package com.ruoyi.domain.vo;
|
|
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 DocumentMaterialsFileList {
|
|
|
|
|
private String recordId;
|
|
private String inquiryNumber;
|
|
private String caseTitle;
|
@Excel(name="序号", width = 7.89, headerColor = IndexedColors.BLACK)
|
private Long num;
|
@Excel(name = "文号 (卷内文件号)", width = 16.89,headerColor = IndexedColors.BLACK)
|
private String documentNumber;
|
|
@Excel(name = "文件题名",width = 39.22, headerColor = IndexedColors.BLACK)
|
private String title;
|
|
|
@Excel(name = "页号",width = 10.33, headerColor = IndexedColors.BLACK)
|
private Long pageNumber;
|
|
@Excel(name = "是否有其他介质", width = 10.11, headerColor = IndexedColors.BLACK)
|
private String fileStyle1;
|
|
@Excel(name = "文件类型", width = 11.22, headerColor = IndexedColors.BLACK)
|
private String fileStyle;
|
@Excel(name = "保管期限", width = 8.67, headerColor = IndexedColors.BLACK)
|
private String retentionPeriod;
|
@Excel(name = "公开属性",width = 10.11, headerColor = IndexedColors.BLACK)
|
private String publicity;
|
@Excel(name = "备注", width = 11.67, headerColor = IndexedColors.BLACK)
|
private String remarks;
|
}
|