1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.thhy.usercore.modules.sys.sysmenubutton.entity;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @Author: zhang_xiao_bo
| * @Date: 2022/4/13 14:10
| * @description: 菜单界面 选择按钮列表
| */
| @Data
| public class MenuButtonListVo implements Serializable {
|
| private String buttonId;
|
| private String buttonHtmlId;
|
| private String buttonhtmlName;
|
| private Integer menuHas;
| }
|
|