fei
3 天以前 38553de8fe4a824919563db827019909caa65f9c
archiveManager/src/main/java/com/ruoyi/domain/vo/ArchiveRecordSmall.java
@@ -2,37 +2,38 @@
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
import org.apache.poi.ss.usermodel.IndexedColors;
@Data
public class ArchiveRecordSmall {
    /** 档案号 */
    @Excel(name = "序号")
    @Excel(name = "序号", width=10,headerColor = IndexedColors.BLACK)
    private Long num;
    @Excel(name = "立案号")
    @Excel(name = "立案号",  width=20,headerColor = IndexedColors.BLACK)
    private String filingNumber;
    /** 档案管(室)号 */
    @Excel(name = "档案发文号_档号")
    @Excel(name = "档案发文号_档号", width=21,headerColor = IndexedColors.BLACK)
    private String inqrid;
    /** 案卷题名 */
    @Excel(name = "案卷题名")
    @Excel(name = "案卷题名", width=23,headerColor = IndexedColors.BLACK)
    private String caseTitle;
    @Excel(name = "公开属性")
    @Excel(name = "公开属性", width=8,headerColor = IndexedColors.BLACK)
    private String publicAttribute;
    /** 缩微号 */
    @Excel(name = "电子文件个数")
    @Excel(name = "电子文件个数",width=7, headerColor = IndexedColors.BLACK)
    private Long cnt;
    @Excel(name = "备注")
    @Excel(name = "备注", width=5,headerColor = IndexedColors.BLACK)
    private String remarks;