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