mirror of https://gitee.com/stylefeng/roses
【7.6.0】【dict】调整字典类型的字段顺序
parent
d383b3f9b0
commit
269e9e5ffd
|
@ -57,13 +57,6 @@ public class SysDictType extends BaseEntity {
|
|||
@ChineseDescription("字典类型")
|
||||
private Integer dictTypeClass;
|
||||
|
||||
/**
|
||||
* 字典类型编码
|
||||
*/
|
||||
@TableField("dict_type_code")
|
||||
@ChineseDescription("字典类型编码")
|
||||
private String dictTypeCode;
|
||||
|
||||
/**
|
||||
* 字典类型业务编码
|
||||
*/
|
||||
|
@ -71,6 +64,13 @@ public class SysDictType extends BaseEntity {
|
|||
@ChineseDescription("字典类型业务编码")
|
||||
private String dictTypeBusCode;
|
||||
|
||||
/**
|
||||
* 字典类型编码
|
||||
*/
|
||||
@TableField("dict_type_code")
|
||||
@ChineseDescription("字典类型编码")
|
||||
private String dictTypeCode;
|
||||
|
||||
/**
|
||||
* 字典类型名称
|
||||
*/
|
||||
|
@ -99,13 +99,6 @@ public class SysDictType extends BaseEntity {
|
|||
@ChineseDescription("字典类型的状态:1-启用,2-禁用")
|
||||
private Integer statusFlag;
|
||||
|
||||
/**
|
||||
* 删除标记 Y-已删除,N-未删除,参考 YesOrNotEnum
|
||||
*/
|
||||
@TableField(value = "del_flag", fill = FieldFill.INSERT)
|
||||
@ChineseDescription("删除标记")
|
||||
private String delFlag;
|
||||
|
||||
/**
|
||||
* 排序,带小数点
|
||||
*/
|
||||
|
@ -113,4 +106,11 @@ public class SysDictType extends BaseEntity {
|
|||
@ChineseDescription("排序")
|
||||
private BigDecimal dictTypeSort;
|
||||
|
||||
/**
|
||||
* 删除标记 Y-已删除,N-未删除,参考 YesOrNotEnum
|
||||
*/
|
||||
@TableField(value = "del_flag", fill = FieldFill.INSERT)
|
||||
@ChineseDescription("删除标记")
|
||||
private String delFlag;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue