package com.matrix.system.common.bean;
|
|
import com.matrix.core.anotations.Extend;
|
import com.matrix.core.pojo.EntityDTO;
|
|
/**
|
* 系统按钮
|
*
|
* @author JIANGYOUYAO
|
* @email 935090232@qq.com
|
* @date 2017年12月3日
|
*/
|
public class SysButton extends EntityDTO {
|
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
private Long btnId;
|
|
private String btnKey;
|
|
private String btnValue;
|
|
public Long getBtnId() {
|
return btnId;
|
}
|
|
public void setBtnId(Long btnId) {
|
this.btnId = btnId;
|
}
|
|
public String getBtnKey() {
|
return btnKey;
|
}
|
|
public void setBtnKey(String btnKey) {
|
this.btnKey = btnKey;
|
}
|
|
public String getBtnValue() {
|
return btnValue;
|
}
|
|
public void setBtnValue(String btnValue) {
|
this.btnValue = btnValue;
|
}
|
|
}
|