xiaoyong931011
2022-05-26 ad2c2d53d756c8c9caa6e043c1868cfdf9736b9d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.xcong.farmer.cms.modules.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminAddMenuDto", description = "参数接收类")
public class AdminAddMenuDto {
 
    @ApiModelProperty(value = "菜单按钮标题")
    private String menuName;
 
    @ApiModelProperty(value = "菜单类型 1:菜单 2:按钮")
    private Integer menuType;
 
    @ApiModelProperty(value = "路由地址")
    private String routeUrl;
 
    @ApiModelProperty(value = "排序")
    private Integer orderNum;
 
    @ApiModelProperty(value = "父级ID")
    private Long parentId;
 
}