mitao
2024-12-27 9c717849bee3d6cc25f29ad69a93a507e3de7d13
medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCheckoutRecordVO.java
@@ -1,6 +1,6 @@
package com.sinata.system.domain.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import cn.idev.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -23,6 +23,7 @@
    private Long id;
    @ApiModelProperty("出库时间")
    @ExcelProperty(value = "出库时间", index = 1)
    private Date checkoutTime;
    @ApiModelProperty("区域id")
@@ -33,24 +34,34 @@
    private String hospitalName;
    @ApiModelProperty("暂存间名称")
    @ExcelProperty(value = "暂存间", index = 3)
    private String roomName;
    @ApiModelProperty("箱数")
    @ExcelProperty(value = "箱数", index = 4)
    private Integer boxNum;
    @ApiModelProperty("袋数")
    @ExcelProperty(value = "袋数", index = 5)
    private Integer bagNum;
    @ApiModelProperty("总重量")
    @ExcelProperty(value = "总重量", index = 6)
    private BigDecimal totalWeight;
    
    @ApiModelProperty("医院签名")
    @ExcelProperty(value = "医院签名", index = 7)
    private String hospitalSignature;
    @ApiModelProperty("司机姓名")
    @ExcelProperty(value = "司机姓名", index = 8)
    private String driverName;
    @ApiModelProperty("车牌号")
    @ExcelProperty(value = "车牌号", index = 9)
    private String licensePlateNumber;
    @ApiModelProperty("转运线路")
    private String routeName;
}