| | |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.net.URL; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | public class MwCheckoutRecordExcel { |
| | | |
| | | @ApiModelProperty("出库时间") |
| | | @ExcelProperty(value = "出库时间", index = 1) |
| | | @ExcelProperty(value = "出库时间", index = 0) |
| | | private Date checkoutTime; |
| | | |
| | | @ExcelProperty(value = "医院", index = 2) |
| | | @ExcelProperty(value = "医院", index = 1) |
| | | private String hospitalName; |
| | | |
| | | @ExcelProperty(value = "暂存间", index = 3) |
| | | @ExcelProperty(value = "暂存间", index = 2) |
| | | private String roomName; |
| | | |
| | | @ExcelProperty(value = "箱数", index = 4) |
| | | @ExcelProperty(value = "箱数", index = 3) |
| | | private Integer boxNum; |
| | | |
| | | @ExcelProperty(value = "袋数", index = 5) |
| | | @ExcelProperty(value = "袋数", index = 4) |
| | | private Integer bagNum; |
| | | |
| | | @ExcelProperty(value = "总重量", index = 6) |
| | | @ExcelProperty(value = "医废重量(kg)", index = 5) |
| | | private BigDecimal totalWeight; |
| | | |
| | | @ExcelProperty(value = "医院签名", index = 7) |
| | | private URL hospitalSignature; |
| | | @ExcelProperty(value = "医院签名", index = 6) |
| | | private byte[] hospitalSignature; |
| | | |
| | | @ExcelProperty(value = "司机姓名", index = 8) |
| | | @ExcelProperty(value = "司机姓名", index = 7) |
| | | private String driverName; |
| | | |
| | | @ExcelProperty(value = "车牌号", index = 9) |
| | | @ExcelProperty(value = "车牌号", index = 8) |
| | | private String licensePlateNumber; |
| | | |
| | | @ApiModelProperty("记录id") |