huliguo
2025-05-30 ac89371643d184cae09b2f93af2e1fce401dc92f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.system.object.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("部门分页VO")
public class SysDeptPageVO {
    @ApiModelProperty("部门id")
    private Long deptId;
 
    @ApiModelProperty("部门名称")
    private String deptName;
}