HttpKey.java
2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.hjx.personalcenter.http;
/**请求参数
* Created by wei on 2017/6/20.
*/
public class HttpKey {
//注册key
public static String USERNAME = "username";
public static String PASSWORD = "password";
public static String SMSCODE = "smscode";
public static String SOURCE = "source";
//忘记密码
public static String AUTHCODE = "authCode";
//注册验证码和忘记密码验证码
public static String TYPE = "type";
public static String MOBIL = "mobile";
//修改密码
public static String OLDPASS = "oldPass";
public static String NEWPASS = "newPass";
//提交保卡
public static String USEID = "userId";
public static String CUSTOMENAME = "customerName";
public static String CUSTOMADRESS = "customerAddress";
public static String BUYADREES = "buyAddress";
public static String BUYTIME = "buyTime";
public static String ALTERSALECALL = "alterSaleCall";
public static String PRODUCTMODEL = "productModel";
public static String DEVICENUMBER = "deviceNumber";
public static String MACADRESS = "macAddress";
public static String MOBILPHONE = "customerPhone";
//提交子账户信息
public static String PARENTID = "parentId";
public static String IMAGE = "image";
public static String NAME = "name";
public static String GRADE = "gradeId";
public static String SCHOOL = "schoolId";
public static String REGION = "regionId";
public static String DEVINUMBER = "deviceNumber";
public static String REGIONNAME = "regionName";
//提交个人信息
public static String ID = "id";
public static String BIRDays = "birthday";
public static String QQ = "qq";
public static String GENDER = "gender";
//版本信息
public static String CHINESE = "chinese";
public static String MATH = "math";
public static String ENGLISH = "english";
public static String PHYSICES = "physics";
public static String CHEMISTRY = "chemistry";
public static String HISTIRY = "history";
public static String GEOGRAPHY = "geography";
public static String POLITICAL = "political";
public static String BIOLOGY = "biology";
public static String SCIENCE = "science";
}