zqy
2025-09-26 29b0e06f470cd2ee33fe9dabfa732deab796dab9
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
package com.ruoyi.domain.vo;
 
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
@Data
public class ArchiveRecordSmall {
 
    /** 档案号 */
    @Excel(name = "序号")
    private Long num;
 
 
    @Excel(name = "立案号")
    private String filingNumber;
    /** 档案管(室)号 */
    @Excel(name = "档案发文号_档号")
    private String inqrid;
 
 
    /** 案卷题名 */
    @Excel(name = "案卷题名")
    private String caseTitle;
 
 
 
    @Excel(name = "公开属性")
    private String publicAttribute;
    /** 缩微号 */
 
 
    @Excel(name = "电子文件个数")
    private Long cnt;
 
    @Excel(name = "备注")
 
    private String remarks;
 
}