提交 7fa7438b authored 作者: 吴德鹏's avatar 吴德鹏

属性管理

上级 02e7ef6d
...@@ -8,7 +8,7 @@ import java.util.Date; ...@@ -8,7 +8,7 @@ import java.util.Date;
* 表名 attributes * 表名 attributes
* *
* @author lipengjun * @author lipengjun
* @date 2020-12-21 15:33:05 * @date 2020-12-21 15:41:01
*/ */
public class AttributesEntity implements Serializable { public class AttributesEntity implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
...@@ -36,7 +36,7 @@ public class AttributesEntity implements Serializable { ...@@ -36,7 +36,7 @@ public class AttributesEntity implements Serializable {
/** /**
* 是否必须 0:否 1:是 * 是否必须 0:否 1:是
*/ */
private Integer isNeed; private String isNeed;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -114,14 +114,14 @@ public class AttributesEntity implements Serializable { ...@@ -114,14 +114,14 @@ public class AttributesEntity implements Serializable {
/** /**
* 设置:是否必须 0:否 1:是 * 设置:是否必须 0:否 1:是
*/ */
public void setIsNeed(Integer isNeed) { public void setIsNeed(String isNeed) {
this.isNeed = isNeed; this.isNeed = isNeed;
} }
/** /**
* 获取:是否必须 0:否 1:是 * 获取:是否必须 0:否 1:是
*/ */
public Integer getIsNeed() { public String getIsNeed() {
return isNeed; return isNeed;
} }
/** /**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论