xuhy
2025-03-07 ca8c83c771495363c46b6cfe56a599dfbdbe70d2
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;
 
}