From 9f585b1b3c9d000140f1d965feb877dfcf51ffb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Thu, 29 Aug 2024 23:07:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=85=AC=E5=85=B1=E5=AD=97?= =?UTF-8?q?=E5=85=B8=E7=9A=84=E9=A2=84=E7=95=99=E5=AD=97=E6=AE=B5=EF=BC=9A?= =?UTF-8?q?component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/gxwebsoft/common/system/entity/DictData.java | 6 ++++++ .../com/gxwebsoft/common/system/entity/DictionaryData.java | 6 ++++++ .../com/gxwebsoft/common/system/param/DictDataParam.java | 3 +++ .../gxwebsoft/common/system/param/DictionaryDataParam.java | 3 +++ 4 files changed, 18 insertions(+) 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;