package com.ruoyi.domain.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.common.annotation.Excel;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class ArchiveInfoVo {
|
|
|
/** 档案号 */
|
@Excel(name = "档案号")
|
private String recordId;
|
/** 档案管(室)号 */
|
@Excel(name = "档案管(室)号")
|
private String archiveRoomNumber;
|
/** 缩微号 */
|
@Excel(name = "缩微号")
|
private String microfilmNumber;
|
/** 发问号 */
|
@Excel(name = "发文号")
|
private String inquiryNumber;
|
|
|
|
/** 案卷题名 */
|
@Excel(name = "案卷题名")
|
private String caseTitle;
|
|
|
|
/** 编制日期 */
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "编制日期", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date preparationDate;
|
/** 编制单位 */
|
@Excel(name = "编制单位")
|
private String preparationUnit;
|
|
/** 保管期限 */
|
@Excel(name = "保管期限")
|
private String retentionPeriod;
|
|
/** 密级 */
|
@Excel(name = "密级")
|
private String securityClassification;
|
|
|
|
|
|
}
|