|
@@ -1,7 +1,12 @@
|
|
|
package com.xt.js.gkaq.frame.model;
|
|
|
|
|
|
-public class ButtonModel {
|
|
|
- private String id;
|
|
|
+import com.xt.js.gkaq.common.BaseUUIDModel;
|
|
|
+
|
|
|
+public class ButtonModel extends BaseUUIDModel {
|
|
|
+ /**
|
|
|
+ * serialVersionUID
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = -4829431105521798820L;
|
|
|
|
|
|
private String name;
|
|
|
|
|
@@ -15,20 +20,6 @@ public class ButtonModel {
|
|
|
|
|
|
private Long sortno;
|
|
|
|
|
|
- private Object createTime;
|
|
|
-
|
|
|
- private Object updateTime;
|
|
|
-
|
|
|
- private String state;
|
|
|
-
|
|
|
- public String getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(String id) {
|
|
|
- this.id = id == null ? null : id.trim();
|
|
|
- }
|
|
|
-
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
@@ -77,27 +68,4 @@ public class ButtonModel {
|
|
|
this.sortno = sortno;
|
|
|
}
|
|
|
|
|
|
- public Object getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(Object createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Object getUpdateTime() {
|
|
|
- return updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdateTime(Object updateTime) {
|
|
|
- this.updateTime = updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public String getState() {
|
|
|
- return state;
|
|
|
- }
|
|
|
-
|
|
|
- public void setState(String state) {
|
|
|
- this.state = state == null ? null : state.trim();
|
|
|
- }
|
|
|
}
|