xuhy
2025-07-01 36ae63696ead1ee92b9f00625bdb4b2a52a43567
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.system.vo.system;
 
import com.ruoyi.system.model.TDept;
import com.ruoyi.system.model.TProjectDept;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "项目部门列表不分页VO")
public class ProjectDeptListVO extends TProjectDept {
 
    @ApiModelProperty("部门人数")
    private Integer userCount;
}