无关风月
2025-03-07 0c97e8cf0e044e63668be6d0c7cf7402a16c86b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.system.vo;
 
import com.ruoyi.system.model.TDept;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "部门返回VO")
public class DeptVO extends TDept {
 
    @ApiModelProperty(value = "部门人数")
    private Integer userCount;
 
}