1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | package cn.lihu.jh.module.system.controller.admin.dept.vo.dept; 
 |    
 |  import io.swagger.v3.oas.annotations.media.Schema; 
 |  import lombok.Data; 
 |    
 |  @Schema(description = "管理后台 - 部门列表 Request VO") 
 |  @Data 
 |  public class DeptListReqVO { 
 |    
 |      @Schema(description = "部门名称,模糊匹配", example = "芋道") 
 |      private String name; 
 |    
 |      @Schema(description = "展示状态,参见 CommonStatusEnum 枚举类", example = "1") 
 |      private Integer status; 
 |    
 |  } 
 |  
  |