|  |  |  | 
|---|
|  |  |  | 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 = "手机号") | 
|---|
|  |  |  | 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; | 
|---|
|  |  |  | } | 
|---|