feige
7 天以前 4581db487ca237dca8eb31415135e800b9982929
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
package com.ruoyi.domain;
 
 
 
import java.util.Date;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 【请填写功能名称】对象 document_materials
 *
 * @author ruoyi
 * @date 2025-07-26
 */
public class DocumentMaterials extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    @TableId(type = IdType.AUTO)
    private Long materialId;
 
    /** $column.columnComment */
    @Excel(name = "文件编任者")
    private String creator;
 
    /** $column.columnComment */
    @Excel(name = "文件提名")
    private String title;
 
    /** $column.columnComment */
    @Excel(name = "日期")
    private Date date;
 
    /** $column.columnComment */
    @Excel(name = "页号")
    private Long pageNumber;
 
    /** $column.columnComment */
    @Excel(name = "页次")
    private Long pageOrder;
 
    /** $column.columnComment */
    @Excel(name = "所处阶段")
    private String stage;
 
    /** $column.columnComment */
    @Excel(name = "公开属性")
    private String publicity;
 
    /** $column.columnComment */
    @Excel(name = "是否为附件")
    private String isAttachment;
 
    /** $column.columnComment */
    @Excel(name = "是否为附图")
    private String isDiagram;
 
    /** $column.columnComment */
    @Excel(name = "保管期限")
    private String retentionPeriod;
 
    /** $column.columnComment */
    @Excel(name = "密级")
    private String securityLevel;
 
    /** $column.columnComment */
    @Excel(name = "是否涉密及敏感信息")
    private String isSensitive;
 
    /** $column.columnComment */
    @Excel(name = "是否注销")
    private String isCanceled;
 
    /** $column.columnComment */
    @Excel(name = "格式")
    private String format;
 
    /** $column.columnComment */
    @Excel(name = "幅面")
    private String sizeType;
 
    /** $column.columnComment */
    @Excel(name = "水平分辨率")
    private Long horizontalResolution;
 
    /** $column.columnComment */
    @Excel(name = "垂直分辨率")
    private Long verticalResolution;
 
    /** $column.columnComment */
    @Excel(name = "宽度")
    private Long width;
 
    /** $column.columnComment */
    @Excel(name = "高度")
    private Long height;
 
    /** $column.columnComment */
    @Excel(name = "大小")
    private Long fileSize;
 
    /** $column.columnComment */
    @Excel(name = "附件及历史发文号")
    private String attachmentHistoryNumbers;
 
    /** $column.columnComment */
    @Excel(name = "备注")
    private String remarks;
 
    /** $column.columnComment */
    @Excel(name = "${comment}")
    private Date createdAt;
 
    /** $column.columnComment */
    @Excel(name = "${comment}")
    private Date updatedAt;
 
 
    private Long recordId;
 
    public Long getRecordId() {
        return recordId;
    }
 
    public void setRecordId(Long recordId) {
        this.recordId = recordId;
    }
 
    public void setMaterialId(Long materialId)
    {
        this.materialId = materialId;
    }
 
    public Long getMaterialId()
    {
        return materialId;
    }
 
    public void setCreator(String creator)
    {
        this.creator = creator;
    }
 
    public String getCreator()
    {
        return creator;
    }
 
    public void setTitle(String title)
    {
        this.title = title;
    }
 
    public String getTitle()
    {
        return title;
    }
 
    public void setDate(Date date)
    {
        this.date = date;
    }
 
    public Date getDate()
    {
        return date;
    }
 
    public void setPageNumber(Long pageNumber)
    {
        this.pageNumber = pageNumber;
    }
 
    public Long getPageNumber()
    {
        return pageNumber;
    }
 
    public void setPageOrder(Long pageOrder)
    {
        this.pageOrder = pageOrder;
    }
 
    public Long getPageOrder()
    {
        return pageOrder;
    }
 
    public void setStage(String stage)
    {
        this.stage = stage;
    }
 
    public String getStage()
    {
        return stage;
    }
 
    public void setPublicity(String publicity)
    {
        this.publicity = publicity;
    }
 
    public String getPublicity()
    {
        return publicity;
    }
 
    public void setIsAttachment(String isAttachment)
    {
        this.isAttachment = isAttachment;
    }
 
    public String getIsAttachment()
    {
        return isAttachment;
    }
 
    public void setIsDiagram(String isDiagram)
    {
        this.isDiagram = isDiagram;
    }
 
    public String getIsDiagram()
    {
        return isDiagram;
    }
 
    public void setRetentionPeriod(String retentionPeriod)
    {
        this.retentionPeriod = retentionPeriod;
    }
 
    public String getRetentionPeriod()
    {
        return retentionPeriod;
    }
 
    public void setSecurityLevel(String securityLevel)
    {
        this.securityLevel = securityLevel;
    }
 
    public String getSecurityLevel()
    {
        return securityLevel;
    }
 
    public void setIsSensitive(String isSensitive)
    {
        this.isSensitive = isSensitive;
    }
 
    public String getIsSensitive()
    {
        return isSensitive;
    }
 
    public void setIsCanceled(String isCanceled)
    {
        this.isCanceled = isCanceled;
    }
 
    public String getIsCanceled()
    {
        return isCanceled;
    }
 
    public void setFormat(String format)
    {
        this.format = format;
    }
 
    public String getFormat()
    {
        return format;
    }
 
    public void setSizeType(String sizeType)
    {
        this.sizeType = sizeType;
    }
 
    public String getSizeType()
    {
        return sizeType;
    }
 
    public void setHorizontalResolution(Long horizontalResolution)
    {
        this.horizontalResolution = horizontalResolution;
    }
 
    public Long getHorizontalResolution()
    {
        return horizontalResolution;
    }
 
    public void setVerticalResolution(Long verticalResolution)
    {
        this.verticalResolution = verticalResolution;
    }
 
    public Long getVerticalResolution()
    {
        return verticalResolution;
    }
 
    public void setWidth(Long width)
    {
        this.width = width;
    }
 
    public Long getWidth()
    {
        return width;
    }
 
    public void setHeight(Long height)
    {
        this.height = height;
    }
 
    public Long getHeight()
    {
        return height;
    }
 
    public void setFileSize(Long fileSize)
    {
        this.fileSize = fileSize;
    }
 
    public Long getFileSize()
    {
        return fileSize;
    }
 
    public void setAttachmentHistoryNumbers(String attachmentHistoryNumbers)
    {
        this.attachmentHistoryNumbers = attachmentHistoryNumbers;
    }
 
    public String getAttachmentHistoryNumbers()
    {
        return attachmentHistoryNumbers;
    }
 
    public void setRemarks(String remarks)
    {
        this.remarks = remarks;
    }
 
    public String getRemarks()
    {
        return remarks;
    }
 
    public void setCreatedAt(Date createdAt)
    {
        this.createdAt = createdAt;
    }
 
    public Date getCreatedAt()
    {
        return createdAt;
    }
 
    public void setUpdatedAt(Date updatedAt)
    {
        this.updatedAt = updatedAt;
    }
 
    public Date getUpdatedAt()
    {
        return updatedAt;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
                .append("materialId", getMaterialId())
                .append("creator", getCreator())
                .append("title", getTitle())
                .append("date", getDate())
                .append("pageNumber", getPageNumber())
                .append("pageOrder", getPageOrder())
                .append("stage", getStage())
                .append("publicity", getPublicity())
                .append("isAttachment", getIsAttachment())
                .append("isDiagram", getIsDiagram())
                .append("retentionPeriod", getRetentionPeriod())
                .append("securityLevel", getSecurityLevel())
                .append("isSensitive", getIsSensitive())
                .append("isCanceled", getIsCanceled())
                .append("format", getFormat())
                .append("sizeType", getSizeType())
                .append("horizontalResolution", getHorizontalResolution())
                .append("verticalResolution", getVerticalResolution())
                .append("width", getWidth())
                .append("height", getHeight())
                .append("fileSize", getFileSize())
                .append("attachmentHistoryNumbers", getAttachmentHistoryNumbers())
                .append("remarks", getRemarks())
                .append("createdAt", getCreatedAt())
                .append("updatedAt", getUpdatedAt())
                .toString();
    }
}