标签内容修改
This commit is contained in:
+1
-2
@@ -76,8 +76,7 @@ public class SysCategory implements Serializable,Comparable<SysCategory>{
|
|||||||
private java.lang.String description;
|
private java.lang.String description;
|
||||||
|
|
||||||
/**是否为标签内容-数据字典(1是 0否)*/
|
/**是否为标签内容-数据字典(1是 0否)*/
|
||||||
@Excel(name = "是否为标签内容-数据字典(1是 0否)", width = 15, dicText = "is_tag_dict", dicCode = "is_tag_dict")
|
@Excel(name = "是否为标签内容-数据字典(1是 0否)", width = 15)
|
||||||
@Dict(dictTable = "onl_cgform_field", dicText = "is_tag_dict", dicCode = "is_tag_dict")
|
|
||||||
@ApiModelProperty(value = "是否为标签内容-数据字典(1是 0否)")
|
@ApiModelProperty(value = "是否为标签内容-数据字典(1是 0否)")
|
||||||
private java.lang.Integer isTagDict;
|
private java.lang.Integer isTagDict;
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -82,8 +82,8 @@ public class OnlCgformTag implements Serializable {
|
|||||||
|
|
||||||
/**表单控件类型*/
|
/**表单控件类型*/
|
||||||
|
|
||||||
@Excel(name = "表单控件类型", width = 15,dictTable = "onl_cgform_field", dicText = "field_show_type",dicCode ="field_show_type")
|
@Excel(name = "表单控件类型", width = 15,dicCode ="field_show_type")
|
||||||
@Dict(dictTable = "onl_cgform_field", dicText = "field_show_type",dicCode ="field_show_type")
|
@Dict(dicCode ="field_show_type")
|
||||||
@ApiModelProperty(value = "表单控件类型")
|
@ApiModelProperty(value = "表单控件类型")
|
||||||
private java.lang.String fieldShowType;
|
private java.lang.String fieldShowType;
|
||||||
|
|
||||||
|
|||||||
@@ -165,6 +165,9 @@ mybatis-plus:
|
|||||||
id-type: ASSIGN_ID
|
id-type: ASSIGN_ID
|
||||||
# 默认数据库表下划线命名
|
# 默认数据库表下划线命名
|
||||||
table-underline: true
|
table-underline: true
|
||||||
|
logic-delete-field: delFlag #默认deleted
|
||||||
|
logic-delete-value: 1
|
||||||
|
logic-not-delete-value: 0
|
||||||
configuration:
|
configuration:
|
||||||
# 这个配置会将执行的sql打印出来,在开发或测试的时候可以用
|
# 这个配置会将执行的sql打印出来,在开发或测试的时候可以用
|
||||||
#log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
#log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||||||
|
|||||||
@@ -4,5 +4,3 @@ spring:
|
|||||||
profiles:
|
profiles:
|
||||||
active: @profile.name@
|
active: @profile.name@
|
||||||
|
|
||||||
mybatis-plus:
|
|
||||||
mapper-locations: classpath:mappers/*.xml
|
|
||||||
Reference in New Issue
Block a user