6
jinlin
2023-12-03 c8d8a511f45c96ed3a5123a88e48de2ffdbf632a
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;
    }
}