3 小时以前 55d694aaae4e421b5e55cd941500e08f85cb5d4d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
}