shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.iplatform.base.pojo.dict;
 
import com.walker.web.DataStatus;
import com.walker.web.param.ParamRequest;
 
/**
 * 字典界面查询条件。
 * @author 时克英
 * @date 2022-11-16
 */
public class DictParam extends ParamRequest {
 
    private String dictName;
 
    private String dictType;
 
    private int status = DataStatus.CONST_NORMAL;
 
    private String dictLabel;
 
    public String getDictLabel() {
        return dictLabel;
    }
 
    public void setDictLabel(String dictLabel) {
        this.dictLabel = dictLabel;
    }
 
    public String getDictName() {
        return dictName;
    }
 
    public void setDictName(String dictName) {
        this.dictName = dictName;
    }
 
    public String getDictType() {
        return dictType;
    }
 
    public void setDictType(String dictType) {
        this.dictType = dictType;
    }
 
    public int getStatus() {
        return status;
    }
 
    public void setStatus(int status) {
        this.status = status;
    }
 
    @Override
    public String toString(){
        return new StringBuilder("[dictName=").append(this.dictName)
                .append(", dictType=").append(this.dictType)
                .append(", status=").append(this.status)
                .append(", dictLabel=").append(this.dictLabel)
                .append("]").toString();
    }
}