| package com.xzx.gc.user.dto; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @ApiModel(value = "JhyApplyDto", description = "集物员申请接收参数类") | 
| public class JhyApplyDto { | 
|   | 
|     @ApiModelProperty(value = "姓名") | 
|     private String username; | 
|   | 
|     @ApiModelProperty(value ="性别 男/女") | 
|     private String gender; | 
|   | 
|     @ApiModelProperty(value = "手机号") | 
|     private String mobile; | 
|   | 
|     @ApiModelProperty(value = "身份证号") | 
|     private String identity; | 
|   | 
|     @ApiModelProperty(value = "地址") | 
|     private String address; | 
|   | 
|     @ApiModelProperty(value = "经度") | 
|     private String lon; | 
|   | 
|     @ApiModelProperty(value = "纬度") | 
|     private String lat; | 
|   | 
|     @ApiModelProperty(value = "身份证照片") | 
|     private String cardPos; | 
|   | 
|     @ApiModelProperty(hidden = true) | 
|     private String userId; | 
| } |