|
@@ -67,125 +67,125 @@ public class SysDictData extends BaseEntity
|
|
|
@ApiModelProperty(value = "状态(0正常 1停用)")
|
|
|
private String status;
|
|
|
|
|
|
- public Long getDictCode()
|
|
|
- {
|
|
|
- return dictCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDictCode(Long dictCode)
|
|
|
- {
|
|
|
- this.dictCode = dictCode;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getDictSort()
|
|
|
- {
|
|
|
- return dictSort;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDictSort(Long dictSort)
|
|
|
- {
|
|
|
- this.dictSort = dictSort;
|
|
|
- }
|
|
|
-
|
|
|
- @NotBlank(message = "字典标签不能为空")
|
|
|
- @Size(min = 0, max = 100, message = "字典标签长度不能超过100个字符")
|
|
|
- public String getDictLabel()
|
|
|
- {
|
|
|
- return dictLabel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDictLabel(String dictLabel)
|
|
|
- {
|
|
|
- this.dictLabel = dictLabel;
|
|
|
- }
|
|
|
-
|
|
|
- @NotBlank(message = "字典键值不能为空")
|
|
|
- //@Size(min = 0, max = 100, message = "字典键值长度不能超过100个字符")
|
|
|
- public String getDictValue()
|
|
|
- {
|
|
|
- return dictValue;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDictValue(String dictValue)
|
|
|
- {
|
|
|
- this.dictValue = dictValue;
|
|
|
- }
|
|
|
-
|
|
|
- @NotBlank(message = "字典类型不能为空")
|
|
|
- @Size(min = 0, max = 100, message = "字典类型长度不能超过100个字符")
|
|
|
- public String getDictType()
|
|
|
- {
|
|
|
- return dictType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDictType(String dictType)
|
|
|
- {
|
|
|
- this.dictType = dictType;
|
|
|
- }
|
|
|
-
|
|
|
- @Size(min = 0, max = 100, message = "样式属性长度不能超过100个字符")
|
|
|
- public String getCssClass()
|
|
|
- {
|
|
|
- return cssClass;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCssClass(String cssClass)
|
|
|
- {
|
|
|
- this.cssClass = cssClass;
|
|
|
- }
|
|
|
-
|
|
|
- public String getListClass()
|
|
|
- {
|
|
|
- return listClass;
|
|
|
- }
|
|
|
-
|
|
|
- public void setListClass(String listClass)
|
|
|
- {
|
|
|
- this.listClass = listClass;
|
|
|
- }
|
|
|
-
|
|
|
- public boolean getDefault()
|
|
|
- {
|
|
|
- return UserConstants.YES.equals(this.isDefault) ? true : false;
|
|
|
- }
|
|
|
-
|
|
|
- public String getIsDefault()
|
|
|
- {
|
|
|
- return isDefault;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsDefault(String isDefault)
|
|
|
- {
|
|
|
- this.isDefault = isDefault;
|
|
|
- }
|
|
|
-
|
|
|
- public String getStatus()
|
|
|
- {
|
|
|
- return status;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStatus(String status)
|
|
|
- {
|
|
|
- this.status = status;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("dictCode", getDictCode())
|
|
|
- .append("dictSort", getDictSort())
|
|
|
- .append("dictLabel", getDictLabel())
|
|
|
- .append("dictValue", getDictValue())
|
|
|
- .append("dictType", getDictType())
|
|
|
- .append("cssClass", getCssClass())
|
|
|
- .append("listClass", getListClass())
|
|
|
- .append("isDefault", getIsDefault())
|
|
|
- .append("status", getStatus())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("remark", getRemark())
|
|
|
- .toString();
|
|
|
- }
|
|
|
+// public Long getDictCode()
|
|
|
+// {
|
|
|
+// return dictCode;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setDictCode(Long dictCode)
|
|
|
+// {
|
|
|
+// this.dictCode = dictCode;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public Long getDictSort()
|
|
|
+// {
|
|
|
+// return dictSort;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setDictSort(Long dictSort)
|
|
|
+// {
|
|
|
+// this.dictSort = dictSort;
|
|
|
+// }
|
|
|
+//
|
|
|
+// @NotBlank(message = "字典标签不能为空")
|
|
|
+// @Size(min = 0, max = 100, message = "字典标签长度不能超过100个字符")
|
|
|
+// public String getDictLabel()
|
|
|
+// {
|
|
|
+// return dictLabel;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setDictLabel(String dictLabel)
|
|
|
+// {
|
|
|
+// this.dictLabel = dictLabel;
|
|
|
+// }
|
|
|
+//
|
|
|
+// // @NotBlank(message = "字典键值不能为空")
|
|
|
+// //@Size(min = 0, max = 100, message = "字典键值长度不能超过100个字符")
|
|
|
+// public String getDictValue()
|
|
|
+// {
|
|
|
+// return dictValue;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setDictValue(String dictValue)
|
|
|
+// {
|
|
|
+// this.dictValue = dictValue;
|
|
|
+// }
|
|
|
+//
|
|
|
+// @NotBlank(message = "字典类型不能为空")
|
|
|
+// @Size(min = 0, max = 100, message = "字典类型长度不能超过100个字符")
|
|
|
+// public String getDictType()
|
|
|
+// {
|
|
|
+// return dictType;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setDictType(String dictType)
|
|
|
+// {
|
|
|
+// this.dictType = dictType;
|
|
|
+// }
|
|
|
+//
|
|
|
+// @Size(min = 0, max = 100, message = "样式属性长度不能超过100个字符")
|
|
|
+// public String getCssClass()
|
|
|
+// {
|
|
|
+// return cssClass;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setCssClass(String cssClass)
|
|
|
+// {
|
|
|
+// this.cssClass = cssClass;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public String getListClass()
|
|
|
+// {
|
|
|
+// return listClass;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setListClass(String listClass)
|
|
|
+// {
|
|
|
+// this.listClass = listClass;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public boolean getDefault()
|
|
|
+// {
|
|
|
+// return UserConstants.YES.equals(this.isDefault) ? true : false;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public String getIsDefault()
|
|
|
+// {
|
|
|
+// return isDefault;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setIsDefault(String isDefault)
|
|
|
+// {
|
|
|
+// this.isDefault = isDefault;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public String getStatus()
|
|
|
+// {
|
|
|
+// return status;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setStatus(String status)
|
|
|
+// {
|
|
|
+// this.status = status;
|
|
|
+// }
|
|
|
+//
|
|
|
+// @Override
|
|
|
+// public String toString() {
|
|
|
+// return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
+// .append("dictCode", getDictCode())
|
|
|
+// .append("dictSort", getDictSort())
|
|
|
+// .append("dictLabel", getDictLabel())
|
|
|
+// .append("dictValue", getDictValue())
|
|
|
+// .append("dictType", getDictType())
|
|
|
+// .append("cssClass", getCssClass())
|
|
|
+// .append("listClass", getListClass())
|
|
|
+// .append("isDefault", getIsDefault())
|
|
|
+// .append("status", getStatus())
|
|
|
+// .append("createBy", getCreateBy())
|
|
|
+// .append("createTime", getCreateTime())
|
|
|
+// .append("updateBy", getUpdateBy())
|
|
|
+// .append("updateTime", getUpdateTime())
|
|
|
+// .append("remark", getRemark())
|
|
|
+// .toString();
|
|
|
+// }
|
|
|
}
|