无关风月
2024-09-03 56dfe0d4bf81262622a1919cceb2b039fd356209
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.ruoyi.system.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("管理员视图对象")
public class ConservatorVO {
    @ApiModelProperty("管理员id")
    private Long userId;
 
    @ApiModelProperty("管理员名称")
    private String nickName;
 
    @ApiModelProperty("管理员联系电话")
    private String phonenumber;
 
    @ApiModelProperty(value = "1=平台 2=省级 3=市州级 4=市县级,5 乡镇级,6 经营单位")
    private Integer roleType;
 
    @ApiModelProperty(value = "用户类型(00=平台 01=供应商  02管理员)")
    private String userType;
 
    /** 所属省名称 */
    @TableField("province_name")
    private String provinceName;
 
    /** 所属省code */
    @TableField("province_code")
    private String provinceCode;
 
    /** 城市名称 */
    @TableField("city_name")
    private String cityName;
 
    /** 城市code */
    @TableField("city_code")
    private String cityCode;
 
    /** 所属区县名称 */
    @TableField("county_name")
    private String countyName;
 
    /** 所属区县code */
    @TableField("county_code")
    private String countyCode;
 
    /** 所属街道名称 */
    @TableField("town_name")
    private String townName;
 
    /** 所属街道code */
    @TableField("town_code")
    private String townCode;
}