diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/RuleVo.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/RuleVo.java index 7645c11..cb3672f 100644 --- a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/RuleVo.java +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/RuleVo.java @@ -62,14 +62,14 @@ public class RuleVo implements Serializable { * 对应模块id */ @Excel(name = "对应模块id", width = 15) - @ApiModelProperty(value = "对应模块id") + @ApiModelProperty(value = "对应模块") // /*@Dict(dictTable = "modulex", dicCode = "id", dicText = "module_name")*/ private java.lang.String moduleId; /** * 对应功能id */ @Excel(name = "对应功能id", width = 15) - @ApiModelProperty(value = "对应功能id") + @ApiModelProperty(value = "对应功能") // /*@Dict(dictTable = "functionx", dicCode = "id", dicText = "function_name")*/ private java.lang.String functionId; /** @@ -100,7 +100,7 @@ public class RuleVo implements Serializable { * 对应实体id */ @Excel(name = "对应实体id", width = 15) - @ApiModelProperty(value = "对应实体id") + @ApiModelProperty(value = "对应实体") // @Dict(dictTable = "tablex", dicText = "table_name", dicCode = "id") private java.lang.String tableId; /** diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/Rulex.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/Rulex.java index 9fb343e..e340ffb 100644 --- a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/Rulex.java +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/Rulex.java @@ -66,14 +66,14 @@ public class Rulex implements Serializable { * 对应模块id */ @Excel(name = "对应模块id", width = 15) - @ApiModelProperty(value = "对应模块id") + @ApiModelProperty(value = "对应模块") @Dict(dictTable = "modulex", dicCode = "id", dicText = "module_name") private java.lang.String moduleId; /** * 对应功能id */ @Excel(name = "对应功能id", width = 15) - @ApiModelProperty(value = "对应功能id") + @ApiModelProperty(value = "对应功能") @Dict(dictTable = "functionx", dicCode = "id", dicText = "function_name") private java.lang.String functionId; /** @@ -104,7 +104,7 @@ public class Rulex implements Serializable { * 对应实体id */ @Excel(name = "对应实体id", width = 15) - @ApiModelProperty(value = "对应实体id") + @ApiModelProperty(value = "对应实体") @Dict(dictTable = "tablex", dicText = "table_name", dicCode = "id") private java.lang.String tableId; /**