| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | /** |
| | | * 账号 |
| | | */ |
| | | @ApiModelProperty(value = "账号") |
| | | private String username; |
| | | * 账号 |
| | | */ |
| | | @ApiModelProperty(value = "账号") |
| | | private String username; |
| | | /** |
| | | * 密码 |
| | | */ |
| | | @ApiModelProperty(value = "密码") |
| | | private String password; |
| | | * 密码 |
| | | */ |
| | | @ApiModelProperty(value = "密码") |
| | | private String password; |
| | | /** |
| | | * 姓名 |
| | | */ |
| | | @ApiModelProperty(value = "姓名") |
| | | private String sname; |
| | | * 姓名 |
| | | */ |
| | | @ApiModelProperty(value = "姓名") |
| | | private String sname; |
| | | /** |
| | | * 性别 |
| | | */ |
| | | @ApiModelProperty(value = "性别") |
| | | private String sex; |
| | | * 性别 |
| | | */ |
| | | @ApiModelProperty(value = "性别") |
| | | private String sex; |
| | | /** |
| | | * 手机号码 |
| | | */ |
| | | @ApiModelProperty(value = "手机号码") |
| | | private String phone; |
| | | * 手机号码 |
| | | */ |
| | | @ApiModelProperty(value = "手机号码") |
| | | private String phone; |
| | | |
| | | /** |
| | | * 注册时间 |
| | |
| | | @ApiModelProperty(value = "角色id") |
| | | private String parentId; |
| | | /** |
| | | * 辖区id |
| | | * 居住地辖区id |
| | | */ |
| | | @ApiModelProperty(value = "辖区id") |
| | | private String jurisdiction; |
| | |
| | | /** |
| | | * 审查时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("audit_time") |
| | | private Date auditTime; |
| | | |
| | | /** |
| | | * 居住地地址 |
| | | */ |
| | | private String address; |
| | | /** |
| | | * 工作地点 |
| | | */ |
| | | private String workaddress; |
| | | /** |
| | | * 工作辖区 |
| | | */ |
| | | private String workjurisdiction; |
| | | private String signals; |
| | | @TableField("job_unit") |
| | | private String jobUnit; |
| | | /** |
| | | * 所属队伍 |
| | | */ |
| | | private String team; |
| | | |
| | | } |