package com.sinata.system.domain.excel;
|
|
import cn.idev.excel.annotation.ExcelIgnore;
|
import cn.idev.excel.annotation.ExcelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author mitao
|
* @date 2025/1/2
|
*/
|
@Data
|
public class MwCheckoutRecordExcel {
|
|
@ApiModelProperty("出库时间")
|
@ExcelProperty(value = "出库时间", index = 0)
|
private Date checkoutTime;
|
|
@ExcelProperty(value = "医院", index = 1)
|
private String hospitalName;
|
|
@ExcelProperty(value = "暂存间", index = 2)
|
private String roomName;
|
|
@ExcelProperty(value = "箱数", index = 3)
|
private Integer boxNum;
|
|
@ExcelProperty(value = "袋数", index = 4)
|
private Integer bagNum;
|
|
@ExcelProperty(value = "医废重量(kg)", index = 5)
|
private BigDecimal totalWeight;
|
|
@ExcelProperty(value = "医院签名", index = 6)
|
private byte[] hospitalSignature;
|
|
@ExcelProperty(value = "司机姓名", index = 7)
|
private String driverName;
|
|
@ExcelProperty(value = "车牌号", index = 8)
|
private String licensePlateNumber;
|
|
@ApiModelProperty("记录id")
|
@ExcelIgnore
|
private Long id;
|
}
|