叶松
2023-10-26 979c7c817b2e7d2430ac447b10f943c12dac3b64
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;
}