吉安感知网项目-后端
linwei
2026-01-23 a48221b7377fc843f3e9fd9afadcc9e0db3e0394
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.sxkj.system.param;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class RegionPageParam {
 
    @ApiModelProperty(value = "父级")
    private String parentName;
 
    @ApiModelProperty(value = "区划代码")
    private String cityCode;
 
    @ApiModelProperty(value = "状态 0:禁用 1:启用 ")
    private Integer status;
 
    @ApiModelProperty(value = "区域名称")
    private String districtName;
 
    @ApiModelProperty(value = "区域等级")
    private Integer regionLevel;
 
}