package com.thhy.usercore.modules.sys.sysbutton.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author zhang_xiao_bo
|
* @since 2022-04-01
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
public class SysButton implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 按钮id
|
*/
|
@Idkey
|
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;
|
|
|
}
|