package com.ruoyi.measuringinstrumentledger.dto; import com.ruoyi.framework.aspectj.lang.annotation.Excel; import lombok.Data; import java.util.Date; @Data public class MeasuringInstrumentLedgerImportDto { @Excel(name = "计量器具编号") private String code; @Excel(name = "计量器具名称") private String name; @Excel(name = "规格型号") private String model; @Excel(name = "最近一次检定日期", dateFormat = "yyyy-MM-dd") private Date mostDate; @Excel(name = "检定有效期") private Integer valid; @Excel(name = "录入日期", dateFormat = "yyyy-MM-dd") private Date recordDate; @Excel(name = "单位") private String unit; @Excel(name = "部门ID") private Long deptId; @Excel(name = "安装位置") private String instationLocation; @Excel(name = "检定周期") private String cycle; }