admin
2024-05-27 816ba1e56476f0e23f51711aae4b34507a04a59c
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
package com.ruoyi.interchange.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.util.Date;
 
/**
 * 文件数据采集规则对象 tb_data_rules
 *
 * @author ruoyi
 * @date 2023-04-26
 */
public class TbDataRules extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private Long id;
 
    /** 所属系统ID */
    @Excel(name = "所属系统ID")
    private Long systemId;
 
    /** 数据名称 */
    @Excel(name = "数据名称")
    private String dataName;
 
    /** 露天矿编码 */
    @Excel(name = "露天矿编码")
    private String coalMineCode;
 
    /** 业务数据编码 */
    @Excel(name = "业务数据编码")
    private String dataCode;
 
    /** 数据类型标识 */
    @Excel(name = "数据类型标识")
    private String dataTypeCode;
 
    /** 生成周期 */
    @Excel(name = "生成周期")
    private Long cycle;
 
    /** 生成周期描述 */
    @Excel(name = "生成周期描述")
    private String cycleDescription;
 
    /** 文件加密规则 */
    @Excel(name = "文件加密规则")
    private String encryption;
 
    /** 文件接收位置 */
    @Excel(name = "文件接收位置")
    private String receiveUrl;
 
    /** 最后一次生成时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "最后一次生成时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date lastTime;
 
    /** 是否检查 */
    @Excel(name = "是否检查(0是,1否)")
    private String checkFlag;
    /** 检查标题 */
    @Excel(name = "检查标题")
    private String checkTitle;
    /** 检查头 */
    @Excel(name = "检查头")
    private String checkHead;
 
    private String sendPath;
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId()
    {
        return id;
    }
    public void setSystemId(Long systemId)
    {
        this.systemId = systemId;
    }
 
    public Long getSystemId()
    {
        return systemId;
    }
    public void setDataName(String dataName)
    {
        this.dataName = dataName;
    }
 
    public String getDataName()
    {
        return dataName;
    }
    public void setCoalMineCode(String coalMineCode)
    {
        this.coalMineCode = coalMineCode;
    }
 
    public String getCoalMineCode()
    {
        return coalMineCode;
    }
    public void setDataCode(String dataCode)
    {
        this.dataCode = dataCode;
    }
 
    public String getDataCode()
    {
        return dataCode;
    }
    public void setDataTypeCode(String dataTypeCode)
    {
        this.dataTypeCode = dataTypeCode;
    }
 
    public String getDataTypeCode()
    {
        return dataTypeCode;
    }
    public void setCycle(Long cycle)
    {
        this.cycle = cycle;
    }
 
    public Long getCycle()
    {
        return cycle;
    }
    public void setCycleDescription(String cycleDescription)
    {
        this.cycleDescription = cycleDescription;
    }
 
    public String getCycleDescription()
    {
        return cycleDescription;
    }
    public void setEncryption(String encryption)
    {
        this.encryption = encryption;
    }
 
    public String getEncryption()
    {
        return encryption;
    }
    public void setReceiveUrl(String receiveUrl)
    {
        this.receiveUrl = receiveUrl;
    }
 
    public String getReceiveUrl()
    {
        return receiveUrl;
    }
    public void setLastTime(Date lastTime)
    {
        this.lastTime = lastTime;
    }
 
    public Date getLastTime()
    {
        return lastTime;
    }
    public void setCheckFlag(String checkFlag)
    {
        this.checkFlag = checkFlag;
    }
 
    public String getCheckFlag()
    {
        return checkFlag;
    }
 
    public String getCheckTitle() {
        return checkTitle;
    }
 
    public void setCheckTitle(String checkTitle) {
        this.checkTitle = checkTitle;
    }
 
    public String getCheckHead() {
        return checkHead;
    }
 
    public void setCheckHead(String checkHead) {
        this.checkHead = checkHead;
    }
 
    public String getSendPath() {
        return sendPath;
    }
 
    public void setSendPath(String sendPath) {
        this.sendPath = sendPath;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("systemId", getSystemId())
            .append("dataName", getDataName())
            .append("coalMineCode", getCoalMineCode())
            .append("dataCode", getDataCode())
            .append("dataTypeCode", getDataTypeCode())
            .append("cycle", getCycle())
            .append("cycleDescription", getCycleDescription())
            .append("encryption", getEncryption())
            .append("receiveUrl", getReceiveUrl())
            .append("lastTime", getLastTime())
            .append("checkFlag", getCheckFlag())
            .toString();
    }
}