From 1278691d47fdadb53a7b4038e001ad75f218759c Mon Sep 17 00:00:00 2001 From: wente <329538422@qq.com> Date: 星期二, 02 一月 2024 10:57:16 +0800 Subject: [PATCH] 项目表 --- zt/common/src/main/java/com/zt/core/sys/dto/DictItemDto.java | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/zt/common/src/main/java/com/zt/core/sys/dto/DictItemDto.java b/zt/common/src/main/java/com/zt/core/sys/dto/DictItemDto.java index fde1c87..9db1f46 100644 --- a/zt/common/src/main/java/com/zt/core/sys/dto/DictItemDto.java +++ b/zt/common/src/main/java/com/zt/core/sys/dto/DictItemDto.java @@ -21,12 +21,13 @@ public class DictItemDto implements Serializable { private String dictLabel; private String dictValue; - + private String remark; public DictItemDto() { } - public DictItemDto(String dictLabel, String dictValue) { + public DictItemDto(String dictLabel, String dictValue, String remark) { this.dictLabel = dictLabel; this.dictValue = dictValue; + this.remark = remark; } } -- Gitblit v1.9.1