xiaoyong931011
2021-07-15 9e519861b32d4ee673b2493af8ce27c6184c3f1c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
}