|
@@ -7,199 +7,234 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
/**
|
|
|
* 实体编码表对象 t_entity_code_table
|
|
|
- *
|
|
|
+ *
|
|
|
* @author zhx
|
|
|
* @date 2024-12-27
|
|
|
*/
|
|
|
-public class TEntityCodeTable extends BaseEntity
|
|
|
-{
|
|
|
+public class TEntityCodeTable extends BaseEntity {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /** id */
|
|
|
+ /**
|
|
|
+ * id
|
|
|
+ */
|
|
|
private String id;
|
|
|
|
|
|
- /** 实体门类 */
|
|
|
+ /**
|
|
|
+ * 实体门类
|
|
|
+ */
|
|
|
@Excel(name = "实体门类")
|
|
|
private String category;
|
|
|
|
|
|
- /** 一级分类码 */
|
|
|
+ /**
|
|
|
+ * 一级分类码
|
|
|
+ */
|
|
|
@Excel(name = "一级分类码")
|
|
|
private String firstcode;
|
|
|
|
|
|
- /** 一级分类名 */
|
|
|
+ /**
|
|
|
+ * 一级分类名
|
|
|
+ */
|
|
|
@Excel(name = "一级分类名")
|
|
|
private String firstcodename;
|
|
|
|
|
|
- /** 二级分类码 */
|
|
|
+ /**
|
|
|
+ * 二级分类码
|
|
|
+ */
|
|
|
@Excel(name = "二级分类码")
|
|
|
private String twocode;
|
|
|
|
|
|
- /** 二级分类名 */
|
|
|
+ /**
|
|
|
+ * 二级分类名
|
|
|
+ */
|
|
|
@Excel(name = "二级分类名")
|
|
|
private String twocodename;
|
|
|
|
|
|
- /** 三级分类码 */
|
|
|
+ /**
|
|
|
+ * 三级分类码
|
|
|
+ */
|
|
|
@Excel(name = "三级分类码")
|
|
|
private String threecode;
|
|
|
|
|
|
- /** 三级分类名 */
|
|
|
+ /**
|
|
|
+ * 三级分类名
|
|
|
+ */
|
|
|
@Excel(name = "三级分类名")
|
|
|
private String threecodename;
|
|
|
|
|
|
- /** 四级分类码 */
|
|
|
+ /**
|
|
|
+ * 四级分类码
|
|
|
+ */
|
|
|
@Excel(name = "四级分类码")
|
|
|
private String fourcode;
|
|
|
|
|
|
- /** 四级分类名 */
|
|
|
+ /**
|
|
|
+ * 四级分类名
|
|
|
+ */
|
|
|
@Excel(name = "四级分类名")
|
|
|
private String fourcodename;
|
|
|
|
|
|
- /** 图形特征码 */
|
|
|
+ /**
|
|
|
+ * 图形特征码
|
|
|
+ */
|
|
|
@Excel(name = "图形特征码")
|
|
|
private String featurecode;
|
|
|
|
|
|
- /** 实体图层 */
|
|
|
+ /**
|
|
|
+ * 实体图层
|
|
|
+ */
|
|
|
@Excel(name = "实体图层")
|
|
|
private String entilayer;
|
|
|
|
|
|
- /** 实体类型 */
|
|
|
+ /**
|
|
|
+ * 实体类型
|
|
|
+ */
|
|
|
@Excel(name = "实体类型")
|
|
|
private String entilaytype;
|
|
|
|
|
|
- public void setId(String id)
|
|
|
- {
|
|
|
+ /**
|
|
|
+ * 实体类型
|
|
|
+ */
|
|
|
+ @Excel(name = "实体颜色")
|
|
|
+ private String color;
|
|
|
+ private int colorIndex;
|
|
|
+
|
|
|
+ public void setId(String id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
- public String getId()
|
|
|
- {
|
|
|
+ public String getId() {
|
|
|
return id;
|
|
|
}
|
|
|
- public void setCategory(String category)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setCategory(String category) {
|
|
|
this.category = category;
|
|
|
}
|
|
|
|
|
|
- public String getCategory()
|
|
|
- {
|
|
|
+ public String getCategory() {
|
|
|
return category;
|
|
|
}
|
|
|
- public void setFirstcode(String firstcode)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setFirstcode(String firstcode) {
|
|
|
this.firstcode = firstcode;
|
|
|
}
|
|
|
|
|
|
- public String getFirstcode()
|
|
|
- {
|
|
|
+ public String getFirstcode() {
|
|
|
return firstcode;
|
|
|
}
|
|
|
- public void setFirstcodename(String firstcodename)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setFirstcodename(String firstcodename) {
|
|
|
this.firstcodename = firstcodename;
|
|
|
}
|
|
|
|
|
|
- public String getFirstcodename()
|
|
|
- {
|
|
|
+ public String getFirstcodename() {
|
|
|
return firstcodename;
|
|
|
}
|
|
|
- public void setTwocode(String twocode)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setTwocode(String twocode) {
|
|
|
this.twocode = twocode;
|
|
|
}
|
|
|
|
|
|
- public String getTwocode()
|
|
|
- {
|
|
|
+ public String getTwocode() {
|
|
|
return twocode;
|
|
|
}
|
|
|
- public void setTwocodename(String twocodename)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setTwocodename(String twocodename) {
|
|
|
this.twocodename = twocodename;
|
|
|
}
|
|
|
|
|
|
- public String getTwocodename()
|
|
|
- {
|
|
|
+ public String getTwocodename() {
|
|
|
return twocodename;
|
|
|
}
|
|
|
- public void setThreecode(String threecode)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setThreecode(String threecode) {
|
|
|
this.threecode = threecode;
|
|
|
}
|
|
|
|
|
|
- public String getThreecode()
|
|
|
- {
|
|
|
+ public String getThreecode() {
|
|
|
return threecode;
|
|
|
}
|
|
|
- public void setThreecodename(String threecodename)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setThreecodename(String threecodename) {
|
|
|
this.threecodename = threecodename;
|
|
|
}
|
|
|
|
|
|
- public String getThreecodename()
|
|
|
- {
|
|
|
+ public String getThreecodename() {
|
|
|
return threecodename;
|
|
|
}
|
|
|
- public void setFourcode(String fourcode)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setFourcode(String fourcode) {
|
|
|
this.fourcode = fourcode;
|
|
|
}
|
|
|
|
|
|
- public String getFourcode()
|
|
|
- {
|
|
|
+ public String getFourcode() {
|
|
|
return fourcode;
|
|
|
}
|
|
|
- public void setFourcodename(String fourcodename)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setFourcodename(String fourcodename) {
|
|
|
this.fourcodename = fourcodename;
|
|
|
}
|
|
|
|
|
|
- public String getFourcodename()
|
|
|
- {
|
|
|
+ public String getFourcodename() {
|
|
|
return fourcodename;
|
|
|
}
|
|
|
- public void setFeaturecode(String featurecode)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setFeaturecode(String featurecode) {
|
|
|
this.featurecode = featurecode;
|
|
|
}
|
|
|
|
|
|
- public String getFeaturecode()
|
|
|
- {
|
|
|
+ public String getFeaturecode() {
|
|
|
return featurecode;
|
|
|
}
|
|
|
- public void setEntilayer(String entilayer)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setEntilayer(String entilayer) {
|
|
|
this.entilayer = entilayer;
|
|
|
}
|
|
|
|
|
|
- public String getEntilayer()
|
|
|
- {
|
|
|
+ public String getEntilayer() {
|
|
|
return entilayer;
|
|
|
}
|
|
|
- public void setEntilaytype(String entilaytype)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setEntilaytype(String entilaytype) {
|
|
|
this.entilaytype = entilaytype;
|
|
|
}
|
|
|
|
|
|
- public String getEntilaytype()
|
|
|
- {
|
|
|
+ public String getEntilaytype() {
|
|
|
return entilaytype;
|
|
|
}
|
|
|
|
|
|
+ public String getColor() {
|
|
|
+ return color;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setColor(String color) {
|
|
|
+ this.color = color;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getColorIndex() {
|
|
|
+ return colorIndex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setColorIndex(int colorIndex) {
|
|
|
+ this.colorIndex = colorIndex;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("category", getCategory())
|
|
|
- .append("firstcode", getFirstcode())
|
|
|
- .append("firstcodename", getFirstcodename())
|
|
|
- .append("twocode", getTwocode())
|
|
|
- .append("twocodename", getTwocodename())
|
|
|
- .append("threecode", getThreecode())
|
|
|
- .append("threecodename", getThreecodename())
|
|
|
- .append("fourcode", getFourcode())
|
|
|
- .append("fourcodename", getFourcodename())
|
|
|
- .append("featurecode", getFeaturecode())
|
|
|
- .append("entilayer", getEntilayer())
|
|
|
- .append("entilaytype", getEntilaytype())
|
|
|
- .toString();
|
|
|
+ return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
+ .append("id", getId())
|
|
|
+ .append("category", getCategory())
|
|
|
+ .append("firstcode", getFirstcode())
|
|
|
+ .append("firstcodename", getFirstcodename())
|
|
|
+ .append("twocode", getTwocode())
|
|
|
+ .append("twocodename", getTwocodename())
|
|
|
+ .append("threecode", getThreecode())
|
|
|
+ .append("threecodename", getThreecodename())
|
|
|
+ .append("fourcode", getFourcode())
|
|
|
+ .append("fourcodename", getFourcodename())
|
|
|
+ .append("featurecode", getFeaturecode())
|
|
|
+ .append("entilayer", getEntilayer())
|
|
|
+ .append("entilaytype", getEntilaytype())
|
|
|
+ .append("color", getColor())
|
|
|
+ .toString();
|
|
|
}
|
|
|
}
|