package com.ruoyi.device.excel.upload;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
import lombok.Data;
|
|
@Data
|
@ColumnWidth(22)
|
public class DeviceImport {
|
|
@ExcelProperty("仪器名称*")
|
private String deviceName;
|
|
@ExcelProperty("规格型号*")
|
private String specificationModel;
|
|
@ExcelProperty("管理编号*")
|
private String managementNumber;
|
|
@ExcelProperty("校准有效期*(yyyy-MM-dd)")
|
private String activationDate;
|
|
@ExcelProperty("所属部门*")
|
private String laboratoryName;
|
|
@ExcelProperty("当前状态*")
|
private String deviceStatus;
|
|
@ExcelProperty("校准周期(月)*")
|
private String calibrationDate;
|
|
@ExcelProperty("英文名称")
|
private String enDeviceName;
|
|
@ExcelProperty("生产厂家")
|
private String manufacturer;
|
|
@ExcelProperty("出厂编号")
|
private String factoryNo;
|
|
@ExcelProperty("资产编码")
|
private String assetCode;
|
|
@ExcelProperty("产地")
|
private String origin;
|
|
@ExcelProperty("购置日期(yyyy-MM-dd)")
|
private String acquisitionDate;
|
|
@ExcelProperty("负责人")
|
private String equipmentManagerName;
|
|
@ExcelProperty("存放点")
|
private String storagePoint;
|
|
@ExcelProperty("技术指标")
|
private String technicalIndicators;
|
|
@ExcelProperty("校准服务机构")
|
private String calibrationServices;
|
|
@ExcelProperty("最近校准日期(yyyy-MM-dd)")
|
private String lastCalibrationDate;
|
|
@ExcelProperty("下次校准日期(yyyy-MM-dd)")
|
private String nextCalibrationDate;
|
|
@ExcelProperty("设备类型")
|
private String largeCategory;
|
|
@ExcelProperty("单价(万元)")
|
private String unitPrice;
|
}
|