package com.thhy.usercore.modules.sys.sysbutton.entity;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @Author: zhang_xiao_bo
|
* @Date: 2022/4/1 10:49
|
* @description:
|
*/
|
@Data
|
public class ButtonDto implements Serializable {
|
|
/**
|
* 按钮id
|
*/
|
private String buttonId;
|
|
/**
|
* 按钮html id
|
*/
|
private String buttonHtmlId;
|
|
/**
|
* 按钮类型
|
*/
|
private String buttonType;
|
|
/**
|
* 是否生效1为有效0为无效
|
*/
|
private Integer isUse;
|
|
/**
|
* button html内容
|
*/
|
private String buttonHtml;
|
|
/**
|
* 按钮描述
|
*/
|
private String buttonDescript;
|
|
/**
|
* 按钮html_name
|
*/
|
private String buttonHtmlName;
|
|
private String roleId;
|
|
private String menuId;
|
|
}
|