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 DocumentMaterialsFileList {
|
|
|
|
|
private String recordId;
|
|
private String inquiryNumber;
|
|
private String caseTitle;
|
@Excel(name="序号")
|
private Long num;
|
@Excel(name = "文件编号")
|
private String documentNumber;
|
|
@Excel(name = "文件题名")
|
private String title;
|
|
|
@Excel(name = "页号")
|
private Long pageNumber;
|
|
@Excel(name = "是否有其他介质")
|
private String fileStyle1;
|
|
@Excel(name = "文件类型")
|
private String fileStyle;
|
@Excel(name = "保管期限")
|
private String retentionPeriod;
|
@Excel(name = "公开属性")
|
private String publicity;
|
@Excel(name = "备注")
|
private String remarks;
|
}
|