【7.6.0】【dict】调整字典类型的字段顺序

pull/57/head
fengshuonan 2023-06-26 23:56:19 +08:00
parent d383b3f9b0
commit 269e9e5ffd
1 changed files with 14 additions and 14 deletions

View File

@ -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;
}