懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 package cn.stylefeng.guns.sys.modular.system.model.params;
2
3 import cn.stylefeng.roses.kernel.model.validator.BaseValidatingParam;
4 import lombok.Data;
5
6 import java.io.Serializable;
7
8 /**
9  * <p>
10  * 字典类型表
11  * </p>
12  *
13  * @author stylefeng
14  * @since 2019-03-13
15  */
16 @Data
17 public class DictTypeParam implements Serializable, BaseValidatingParam {
18
19     private static final long serialVersionUID = 1L;
20
21
22     /**
23      * 字典类型id
24      */
25     private Long dictTypeId;
26
27     /**
28      * 是否是系统字典,Y-是,N-否
29      */
30     private String systemFlag;
31
32     /**
33      * 字典类型编码
34      */
35     private String code;
36
37     /**
38      * 字典类型名称
39      */
40     private String name;
41
42     /**
43      * 字典描述
44      */
45     private String description;
46
47     /**
48      * 状态(字典)
49      */
50     private String status;
51
52     /**
53      * 查询条件
54      */
55     private String condition;
56
57     /**
58      * 排序
59      */
60     private Integer sort;
61
62     /**
63      * 字典类型编码
64      */
65     private String dictTypeCode;
66
67     @Override
68     public String checkParam() {
69         return null;
70     }
71
72 }