You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
3.9 KiB
66 lines
3.9 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AIK.Common.SysCommon
|
|
{
|
|
/// <summary>
|
|
/// 自带/前缀的WebApi地址
|
|
/// </summary>
|
|
public static class WebApiAddress
|
|
{
|
|
public static string Vehicle_keyBrand_List = "/prod-api/work_key/vehicle_key/brand_list"; //获取品牌列表
|
|
public static string Vehicle_keyBrand_Detail = "/prod-api/work_key/vehicle_key/brand_detail"; //获取品牌详情
|
|
public static string CommonProfile = "/prod-api/work_main/common/profile"; //获取用户信息
|
|
public static string AccountLogin = "/prod-api/work_main/login";//账密登录
|
|
public static string PhoneRegister = "/prod-api/work_main/user/phone_register";//手机号注册
|
|
public static string EmailRegister = "/prod-api/work_main/user/user/email_register";//邮箱注册(路径按接口文档原样,含双 user)
|
|
|
|
#region 短信/邮箱服务(work_sms)
|
|
public static string SendCode = "/prod-api/work_sms/sms/send_code";//发送注册验证码(GET,参数 phone)
|
|
public static string SendLoginCode = "/prod-api/work_sms/sms/send_login";//发送登录验证码(GET,参数 phone)
|
|
public static string CheckCode = "/prod-api/work_sms/sms/check_code";//验证验证码(GET,参数 code/phone/type)
|
|
|
|
// 邮箱服务(GET,成功码 code=1)
|
|
public static string EmailSendCode = "/prod-api/work_sms/email/send_code";//发送邮箱验证码(参数 address/type)
|
|
public static string EmailCheckCode = "/prod-api/work_sms/email/check_code";//验证邮箱验证码(参数 address/code)
|
|
#endregion
|
|
public static string BannerAll = "/prod-api/work_key/banner/all"; //获取首页轮播图
|
|
public static string AppNew = "/prod-api/work_key/app/new"; //获取最新版本信息
|
|
public static string LogList = "/prod-api/work_key/d_info/log_list";//烧录记录
|
|
public static string Integral = "/prod-api/work_key/integral/get";//用户积分
|
|
public static string IntegralHistroy = "/prod-api/work_key/integral/get_history";//积分记录
|
|
public static string KeyAddInfo = "/prod-api/work_key/d_info/add_info";//用户添加烧录记录
|
|
public static string BurnAdd = "/prod-api/work_key/burn/add";//用户添加烧录次数
|
|
|
|
#region 会员功能与支付积分
|
|
public static string MembershipModuleList = "/prod-api/work_key/func/module_list";
|
|
public static string MembershipFind = "/prod-api/work_key/func/find";
|
|
public static string MembershipOpen = "/prod-api/work_key/func/open";
|
|
public static string MembershipBind = "/prod-api/work_key/func/bind";
|
|
public static string MembershipCheck = "/prod-api/work_key/func/check";
|
|
public static string MembershipActivate = "/prod-api/work_key/func/act";
|
|
public static string MembershipFindCount = "/prod-api/work_key/func/find_count";
|
|
public static string MembershipAddCount = "/prod-api/work_key/func/add_count";
|
|
public static string PayIntegralOrder = "/prod-api/work_app_mall/info/pay_integral_order";
|
|
public static string OrderPayStatus = "/prod-api/work_app_mall/info/order_pay_status";
|
|
public static string OrderPaypal = "/prod-api/work_key/info/order_paypal";
|
|
#endregion
|
|
|
|
public static string OssDataCache = "/prod-api/work_main/oss_data/cache/type";//K3tool云数据缓存地址
|
|
|
|
public static string TpmsType = "/prod-api/work_key/tpms_type/type";//获取胎压类型
|
|
|
|
#region 工具类型(用于版本更新)
|
|
public static string K3ToolType = "i2";
|
|
public static string PCType = "pcwin7";
|
|
public static string PCZipType = "pcwin7_zip";
|
|
#endregion
|
|
|
|
#region oss数据缓存类型
|
|
public static string K3ToolBin = "K3tool_bin";
|
|
#endregion
|
|
}
|
|
}
|
|
|