diff --git a/src/main/java/com/gxwebsoft/common/system/entity/DictData.java b/src/main/java/com/gxwebsoft/common/system/entity/DictData.java index 8daee79..06bb8ea 100644 --- a/src/main/java/com/gxwebsoft/common/system/entity/DictData.java +++ b/src/main/java/com/gxwebsoft/common/system/entity/DictData.java @@ -33,6 +33,12 @@ public class DictData implements Serializable { @ApiModelProperty(value = "字典数据名称") private String dictDataName; + @ApiModelProperty(value = "预设字段:路由地址") + private String path; + + @ApiModelProperty(value = "预设字段:组件路径") + private String component; + @ApiModelProperty(value = "排序号") private Integer sortNumber; diff --git a/src/main/java/com/gxwebsoft/common/system/entity/DictionaryData.java b/src/main/java/com/gxwebsoft/common/system/entity/DictionaryData.java index aec639c..12b297c 100644 --- a/src/main/java/com/gxwebsoft/common/system/entity/DictionaryData.java +++ b/src/main/java/com/gxwebsoft/common/system/entity/DictionaryData.java @@ -34,6 +34,12 @@ public class DictionaryData implements Serializable { @ApiModelProperty(value = "字典数据名称") private String dictDataName; + @ApiModelProperty(value = "预设字段:路由地址") + private String path; + + @ApiModelProperty(value = "预设字段:组件路径") + private String component; + @ApiModelProperty(value = "排序号") private Integer sortNumber; diff --git a/src/main/java/com/gxwebsoft/common/system/param/DictDataParam.java b/src/main/java/com/gxwebsoft/common/system/param/DictDataParam.java index 68d85b9..24d7f61 100644 --- a/src/main/java/com/gxwebsoft/common/system/param/DictDataParam.java +++ b/src/main/java/com/gxwebsoft/common/system/param/DictDataParam.java @@ -44,6 +44,9 @@ public class DictDataParam extends BaseParam { @TableField(exist = false) private String dictCode; + @ApiModelProperty(value = "预设字段:组件路径") + private String component; + @ApiModelProperty(value = "字典名称") @TableField(exist = false) private String dictName; diff --git a/src/main/java/com/gxwebsoft/common/system/param/DictionaryDataParam.java b/src/main/java/com/gxwebsoft/common/system/param/DictionaryDataParam.java index 9ae7597..478ac42 100644 --- a/src/main/java/com/gxwebsoft/common/system/param/DictionaryDataParam.java +++ b/src/main/java/com/gxwebsoft/common/system/param/DictionaryDataParam.java @@ -37,6 +37,9 @@ public class DictionaryDataParam extends BaseParam { @ApiModelProperty(value = "字典数据名称") private String dictDataName; + @ApiModelProperty(value = "预设字段:组件路径") + private String component; + @ApiModelProperty(value = "备注") private String comments;