| | |
| | | package com.yuanchu.mom.dto; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.yuanchu.mom.annotation.ValueTableShow; |
| | |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ValueTableShow(value = 1, name = "下单时间") |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","ZTT/QR-30-01-01","日期"}) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ValueTableShow(value = 2, name = "委托编号") |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","ZTT/QR-30-01-01","检验编号"}) |
| | | private String entrustCode; |
| | | |
| | | @ValueTableShow(value = 3, name = "样品名称") |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","样品名称"}) |
| | | private String sample; |
| | | |
| | | @ValueTableShow(value = 4, name = "规格型号") |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","规格型号"}) |
| | | private String model; |
| | | |
| | | @ValueTableShow(value = 5, name = "样品数量") |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","样品数量"}) |
| | | private Integer num; |
| | | |
| | | @ValueTableShow(value = 6, name = "总价") |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","总价"}) |
| | | private BigDecimal price; |
| | | |
| | | @ValueTableShow(value = 7, name = "试验项目") |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","试验项目"}) |
| | | private String inspectionItem; |
| | | |
| | | @ValueTableShow(value = 8, name = "委托单位") |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","委托单位"}) |
| | | private String company; |
| | | |
| | | @ValueTableShow(value = 9, name = "委托人") |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","委托人"}) |
| | | private String name; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","生产单位"}) |
| | | private String production; |
| | | |
| | | @ExcelProperty(value ={"中天科技检测中心样品登记表","工程名称"}) |
| | | private String engineering; |
| | | |
| | | @ExcelIgnore |
| | | private Integer createUser; |
| | | |
| | | @ExcelIgnore |
| | | private Integer insSampleId; |
| | | |
| | | @ExcelIgnore |
| | | private Double cost;//工时 |
| | | |
| | | @TableField(exist = false,select = false) |
| | | @ExcelIgnore |
| | | private String dates; |
| | | |
| | | |