jinlin
2023-11-27 b3aece73dae9db49091c619f111fd03171b5cdb0
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;
    }
}