HttpKey.java 1.73 KB
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";








}