吉安感知网项目-后端
linwei
2026-01-30 9e57c59ef51e3baf6999eb8936ac27c1774d416f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.sxkj.system.param;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class DeptExportParam {
 
    @ApiModelProperty(value = "部门名称")
    private String deptName;
 
    @ApiModelProperty(value = "部门全称")
    private String fullName;
 
    @ApiModelProperty(value = "所属区划")
    private String areaCode;
 
    @ApiModelProperty(value = "部门ID列表")
    private List<Long> deptIds;
}