吉安感知网项目-后端
linwei
2026-04-13 79ac8d0cee3b8dfea64b4d9a1ebdeb846490ecf0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.sxkj.system.param;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class DeptPageParam {
 
    @ApiModelProperty(value = "部门名称")
    private String deptName;
 
    @ApiModelProperty(value = "机构编码")
    private String deptCode;
 
    @ApiModelProperty(value = "所属区划")
    private String areaCode;
 
    @ApiModelProperty(value = "系统编码 5:反无  6:工单")
    private String sysType;
}