package com.vci.web.bo;
|
|
/**
|
* 代码生成的时候的按钮
|
* @author weidy
|
* @date 2020/8/3 8:08
|
*/
|
public class OsCodeGenButtonBO {
|
|
/**
|
* 按钮标识
|
*/
|
private String id;
|
|
/**
|
* 按钮名称
|
*/
|
private String text;
|
|
/**
|
* 按钮图标样式
|
*/
|
private String iconCls;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getText() {
|
return text;
|
}
|
|
public void setText(String text) {
|
this.text = text;
|
}
|
|
public String getIconCls() {
|
return iconCls;
|
}
|
|
public void setIconCls(String iconCls) {
|
this.iconCls = iconCls;
|
}
|
|
@Override
|
public String toString() {
|
return "OsCodeGenButtonBO{" +
|
"id='" + id + '\'' +
|
", text='" + text + '\'' +
|
", iconCls='" + iconCls + '\'' +
|
'}';
|
}
|
}
|