From d33e687ff5b3fdb50e3dccf50e3a276baf2e6c5c Mon Sep 17 00:00:00 2001 From: zzw <wander.zheng@qq.com> Date: 星期五, 17 十一月 2023 17:03:50 +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