From e023474fc9bcc726ed558a0623f1316dddc13152 Mon Sep 17 00:00:00 2001
From: zzw <wander.zheng@qq.com>
Date: 星期五, 01 十二月 2023 15:14:32 +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