|
@@ -30,29 +30,17 @@ public class UserInfo extends BaseBusinessEntity{
|
|
|
@ApiModelProperty(value = "主键")
|
|
|
private Long id;
|
|
|
|
|
|
- /** 驾校全国统一编号 */
|
|
|
- @Excel(name = "驾校全国统一编号")
|
|
|
- @TableField("inscode")
|
|
|
- @ApiModelProperty(value = "驾校全国统一编号")
|
|
|
- private String inscode;
|
|
|
-
|
|
|
- /** 姓名 */
|
|
|
- @Excel(name = "姓名")
|
|
|
- @TableField("name")
|
|
|
- @ApiModelProperty(value = "姓名")
|
|
|
- private String name;
|
|
|
-
|
|
|
/** 性别 1:男性 2:女性 */
|
|
|
@Excel(name = "性别 1:男性 2:女性")
|
|
|
@TableField("sex")
|
|
|
@ApiModelProperty(value = "性别 1:男性 2:女性")
|
|
|
- private Long sex;
|
|
|
+ private Integer sex;
|
|
|
|
|
|
/** 身份证明号码 1:身份证号,2:护照,3:军官证,4:其他 */
|
|
|
@Excel(name = "身份证明号码 1:身份证号,2:护照,3:军官证,4:其他")
|
|
|
@TableField("cardtype")
|
|
|
@ApiModelProperty(value = "身份证明号码 1:身份证号,2:护照,3:军官证,4:其他")
|
|
|
- private Long cardtype;
|
|
|
+ private Integer cardtype;
|
|
|
|
|
|
/** 身份证明号码 */
|
|
|
@Excel(name = "身份证明号码")
|
|
@@ -73,11 +61,6 @@ public class UserInfo extends BaseBusinessEntity{
|
|
|
@ApiModelProperty(value = "手机号码")
|
|
|
private String phone;
|
|
|
|
|
|
- /** 登录密码 MD5加密 */
|
|
|
- @Excel(name = "登录密码 MD5加密")
|
|
|
- @TableField("password")
|
|
|
- @ApiModelProperty(value = "登录密码 MD5加密")
|
|
|
- private String password;
|
|
|
|
|
|
/** 微信号码 */
|
|
|
@Excel(name = "微信号码")
|
|
@@ -108,25 +91,8 @@ public class UserInfo extends BaseBusinessEntity{
|
|
|
@Excel(name = "业务类型 0:初领 1:增领 9:其他")
|
|
|
@TableField("busitype")
|
|
|
@ApiModelProperty(value = "业务类型 0:初领 1:增领 9:其他")
|
|
|
- private String busitype;
|
|
|
-
|
|
|
- /** 原准驾车型 */
|
|
|
- @Excel(name = "原准驾车型")
|
|
|
- @TableField("perdritype")
|
|
|
- @ApiModelProperty(value = "原准驾车型")
|
|
|
- private String perdritype;
|
|
|
-
|
|
|
- /** 培训车型 */
|
|
|
- @Excel(name = "培训车型")
|
|
|
- @TableField("traintype")
|
|
|
- @ApiModelProperty(value = "培训车型")
|
|
|
- private String traintype;
|
|
|
-
|
|
|
- /** 教练全国统一编号 */
|
|
|
- @Excel(name = "教练全国统一编号")
|
|
|
- @TableField("coachnum")
|
|
|
- @ApiModelProperty(value = "教练全国统一编号")
|
|
|
- private String coachnum;
|
|
|
+ private Integer busitype;
|
|
|
+
|
|
|
|
|
|
/** 0 启用 1禁用 */
|
|
|
@Excel(name = "0 启用 1禁用")
|
|
@@ -134,17 +100,13 @@ public class UserInfo extends BaseBusinessEntity{
|
|
|
@ApiModelProperty(value = "0 启用 1禁用")
|
|
|
private String status;
|
|
|
|
|
|
- /** 全国平台照片ID */
|
|
|
- @Excel(name = "全国平台照片ID")
|
|
|
- @TableField("photo")
|
|
|
- @ApiModelProperty(value = "全国平台照片ID")
|
|
|
- private Long photo;
|
|
|
|
|
|
/** 驾校班型Id */
|
|
|
- @Excel(name = "驾校班型Id")
|
|
|
- @TableField("school_class_type_id")
|
|
|
- @ApiModelProperty(value = "驾校班型Id")
|
|
|
- private Long schoolClassTypeId;
|
|
|
+ @Excel(name = "公众平台用户Id")
|
|
|
+ @TableField("gzpt_user_id")
|
|
|
+ @ApiModelProperty(value = "公众平台用户Id")
|
|
|
+ private Integer gzptUserId;
|
|
|
+
|
|
|
|
|
|
|
|
|
}
|