| | |
| | | |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @ApiModel(value = "JhyInfoListVo", description = "后台集物员列表接口返回参数类") |
| | | public class JhyInfoListVo { |
| | | |
| | | private String name; |
| | | @ApiModelProperty(value = "姓名") |
| | | private String username; |
| | | |
| | | @ApiModelProperty(value = "性别 1-男 2-女") |
| | | private String gender; |
| | | |
| | | @ApiModelProperty(value = "手机号") |
| | | private String mobile; |
| | | |
| | | private String identity; |
| | | |
| | | private String address; |
| | | |
| | | private String cardPos; |
| | | |
| | | private String isJhy; |
| | | |
| | | private Integer status; |
| | | } |