无关风月
2024-08-27 b5ef65d0103a71dc7af2b9be6d2ac43aca5bb726
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.system.domain.dto;
 
import com.ruoyi.common.core.web.page.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("查询管理员列表DTO")
public class ConservatorQueryA  {
 
    @ApiModelProperty(value = "2省 3市州 4市县 5乡镇 6经营单位")
    private Integer grade;
    @ApiModelProperty(value = "市州code")
    private String cityCode;
    @ApiModelProperty(value = "市县code")
    private String countyCode;
    @ApiModelProperty(value = "乡镇code")
    private String townCode;
 
}