| package com.xzx.gc.user.vo; | 
|   | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
|   | 
| @Data | 
| @ApiModel(value = "JhyInfoListVo", description = "后台集物员列表接口返回参数类") | 
| public class JhyInfoListVo { | 
|   | 
|     private Long id; | 
|   | 
|     @ApiModelProperty(value = "姓名") | 
|     private String username; | 
|   | 
|     @ApiModelProperty(value = "性别 1-男 2-女") | 
|     private String gender; | 
|   | 
|     @ApiModelProperty(value = "手机号") | 
|     private String mobile; | 
|   | 
|     @ApiModelProperty(value = "身份证号") | 
|     private String identity; | 
|   | 
|     @ApiModelProperty(value = "地址") | 
|     private String address; | 
|   | 
|     @ApiModelProperty(value = "身份证正面") | 
|     private String cardPos; | 
|   | 
|     @ApiModelProperty(value = "是否集货员 1-是2-否") | 
|     private String isJhy; | 
|   | 
|     @ApiModelProperty(value = "审核状态 1-待审核 2-审核通过 3-审核拒绝") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "申请时间") | 
|     private String createTime; | 
|   | 
|     @ApiModelProperty(hidden = true) | 
|     private Date createdTime; | 
| } |