From ea4ca187c766e8a5242c3ec9f8f6ba853f3c5def Mon Sep 17 00:00:00 2001 From: shizhong <124974919@qq.com> Date: Thu, 30 Mar 2023 15:56:07 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E9=85=8D=E7=BD=AE=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=AF=BC=E5=87=BA=E7=BC=BA=E5=B0=91=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E9=94=AE=E5=90=8D=E5=8F=8A=E5=85=B6=E4=BB=96=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E4=B8=8D=E6=AD=A3=E7=A1=AE=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/admin/config/vo/ConfigExcelVO.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/controller/admin/config/vo/ConfigExcelVO.java b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/controller/admin/config/vo/ConfigExcelVO.java index 5780b04cd..12611032a 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/controller/admin/config/vo/ConfigExcelVO.java +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/controller/admin/config/vo/ConfigExcelVO.java @@ -18,10 +18,10 @@ public class ConfigExcelVO { private Long id; @ExcelProperty("参数键名") - private String key; + private String configKey; - @ExcelProperty("参数分组") - private String group; + @ExcelProperty("参数分类") + private String category; @ExcelProperty("参数名称") private String name; @@ -33,9 +33,9 @@ public class ConfigExcelVO { @DictFormat(DictTypeConstants.CONFIG_TYPE) private Integer type; - @ExcelProperty(value = "是否敏感", converter = DictConvert.class) + @ExcelProperty(value = "是否可见", converter = DictConvert.class) @DictFormat(DictTypeConstants.BOOLEAN_STRING) - private Boolean sensitive; + private Boolean visible; @ExcelProperty("备注") private String remark;