| | |
| | | public class CostStatisticsDto{ |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","ZTT/QR-30-01-01","日期"}) |
| | | @ExcelProperty(value ={"样品登记表","日期"}) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","ZTT/QR-30-01-01","检验编号"}) |
| | | @ExcelProperty(value ={"样品登记表","检验编号"}) |
| | | private String entrustCode; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","样品名称"}) |
| | | @ExcelProperty(value ={"样品登记表","样品名称"}) |
| | | private String sample; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","规格型号"}) |
| | | @ExcelProperty(value ={"样品登记表","规格型号"}) |
| | | private String model; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","样品数量"}) |
| | | @ExcelProperty(value ={"样品登记表","样品数量"}) |
| | | private Integer num; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","总价"}) |
| | | @ExcelProperty(value ={"样品登记表","总价"}) |
| | | private BigDecimal price; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","试验项目"}) |
| | | @ExcelProperty(value ={"样品登记表","试验项目"}) |
| | | private String inspectionItem; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","委托单位"}) |
| | | @ExcelProperty(value ={"样品登记表","委托单位"}) |
| | | private String company; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","委托人"}) |
| | | @ExcelProperty(value ={"样品登记表","委托人"}) |
| | | private String name; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","生产单位"}) |
| | | @ExcelProperty(value ={"样品登记表","生产单位"}) |
| | | private String production; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","工程名称"}) |
| | | @ExcelProperty(value ={"样品登记表","工程名称"}) |
| | | private String engineering; |
| | | |
| | | @ExcelIgnore |