jinlin
2024-01-10 cdf29a8f6fb9990f82ccc1d3f47bfba48cfaf4fc
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;
    }
}