package com.ruoyi.domain.vo; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.fasterxml.jackson.annotation.JsonFormat; import com.ruoyi.common.annotation.Excel; import lombok.Data; import org.apache.poi.ss.usermodel.IndexedColors; import java.util.Date; @Data public class ArchiveRecordModelOther { /** 档案号 */ @Excel(name = "档案号", headerColor = IndexedColors.BLACK) private String recordId; /** 案卷题名 */ @Excel(name = "案卷题名", headerColor = IndexedColors.BLACK) private String caseTitle; /** 公开属性 */ @Excel(name = "公开属性", headerColor = IndexedColors.BLACK) private String publicAttribute; /** 编制单位 */ @Excel(name = "编制单位", headerColor = IndexedColors.BLACK) private String preparationUnit; /** 编制日期 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "编制日期", width = 30, dateFormat = "yyyy-MM-dd", headerColor = IndexedColors.BLACK) private Date preparationDate; /** 保管期限 */ @Excel(name = "保管期限", headerColor = IndexedColors.BLACK) private String retentionPeriod; /** 密级 */ @Excel(name = "密级", readConverterExp = "该页另存=普通", headerColor = IndexedColors.BLACK) private String securityClassification; @Excel(name = "案卷状态", headerColor = IndexedColors.BLACK) private String recordStatus; /** 案卷页数 */ @Excel(name = "案卷页数", headerColor = IndexedColors.BLACK) private Long pageCount; /** 立案号 */ @Excel(name = "立案号", headerColor = IndexedColors.BLACK) private String filingNumber; /** 建设单位 */ @Excel(name = "建设单位", headerColor = IndexedColors.BLACK) private String constructionUnit; /** 建设地址 */ @Excel(name = "建设地址", headerColor = IndexedColors.BLACK) private String constructionAddress; /** 建设项目名称 */ @Excel(name = "建设项目名称", headerColor = IndexedColors.BLACK) private String projectName; /** 项目编号 */ @Excel(name = "项目编号", headerColor = IndexedColors.BLACK) private String projectNumber; /** 扫描加工公司 */ @Excel(name = "扫描加工公司", headerColor = IndexedColors.BLACK) private String scanningCompany; /** 档案管(室)号 */ @Excel(name = "档案管(室)号", headerColor = IndexedColors.BLACK) private String archiveRoomNumber; /** 缩微号 */ @Excel(name = "缩微号", headerColor = IndexedColors.BLACK) private String microfilmNumber; /** 备注 */ @Excel(name = "备注", headerColor = IndexedColors.BLACK) private String remarks; /** 历史相关发文号 */ @Excel(name = "历史相关发文号", headerColor = IndexedColors.BLACK) private String historicalReferenceNumber; }