吉安感知网项目-后端
linwei
2026-01-23 1c301aa0a38e10f71f42cc4fa4606a2118cb9766
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 fullName;
}