xing
2023-02-23 c75e6f4696634d626c5569794c6349593853223a
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package com.yssh.entity;
 
 
import org.junit.platform.commons.util.ToStringBuilder;
 
/**
 * 字典记录对象 yssh_dict_record
 *
 * @author xingjinshuang@smartearth.cn
 * @date 2023-02-06
 */
public class DictRecord {
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private Long id;
 
    /** 表名称 */
    private String tableName;
 
    /** 表其他内容 */
    private String other;
 
    /** 备注 */
    private String remarks;
 
    /** 状态 */
    private String status;
 
    /** 预留一 */
    private String resOne;
 
    /** 预留二 */
    private String resTwo;
 
    /** 预留三 */
    private String resThree;
 
    /** 预留四 */
    private String resFour;
 
    /** 创建时间 */
    private String createTime;
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId()
    {
        return id;
    }
    public void setTableName(String tableName)
    {
        this.tableName = tableName;
    }
 
    public String getTableName()
    {
        return tableName;
    }
    public void setOther(String other)
    {
        this.other = other;
    }
 
    public String getOther()
    {
        return other;
    }
    public void setRemarks(String remarks)
    {
        this.remarks = remarks;
    }
 
    public String getRemarks()
    {
        return remarks;
    }
    public void setStatus(String status)
    {
        this.status = status;
    }
 
    public String getStatus()
    {
        return status;
    }
    public void setResOne(String resOne)
    {
        this.resOne = resOne;
    }
 
    public String getResOne()
    {
        return resOne;
    }
    public void setResTwo(String resTwo)
    {
        this.resTwo = resTwo;
    }
 
    public String getResTwo()
    {
        return resTwo;
    }
    public void setResThree(String resThree)
    {
        this.resThree = resThree;
    }
 
    public String getResThree()
    {
        return resThree;
    }
    public void setResFour(String resFour)
    {
        this.resFour = resFour;
    }
 
    public String getResFour()
    {
        return resFour;
    }
 
    //时间
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
}