|
@@ -1,6 +1,7 @@
|
|
|
package com.bizmatics.model;
|
|
|
|
|
|
import com.bizmatics.common.core.constants.CommonConst;
|
|
|
+import com.bizmatics.common.mvc.base.BaseModel;
|
|
|
import com.bizmatics.model.base.BaseEntity;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
@@ -11,14 +12,14 @@ import javax.validation.constraints.Size;
|
|
|
/**
|
|
|
* 字典数据表 sys_dict_data
|
|
|
*/
|
|
|
-public class SysDictData extends BaseEntity {
|
|
|
+public class SysDictData extends BaseModel {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
/**
|
|
|
* 字典编码
|
|
|
*/
|
|
|
|
|
|
- private Long dictCode;
|
|
|
+ private Long id;
|
|
|
|
|
|
/**
|
|
|
* 字典排序
|
|
@@ -66,12 +67,12 @@ public class SysDictData extends BaseEntity {
|
|
|
|
|
|
private String status;
|
|
|
|
|
|
- public Long getDictCode() {
|
|
|
- return dictCode;
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
}
|
|
|
|
|
|
- public void setDictCode(Long dictCode) {
|
|
|
- this.dictCode = dictCode;
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
}
|
|
|
|
|
|
public Long getDictSort() {
|
|
@@ -149,23 +150,4 @@ public class SysDictData extends BaseEntity {
|
|
|
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();
|
|
|
- }
|
|
|
}
|