package com.sinata.system.domain.vo;
|
|
import cn.idev.excel.annotation.ExcelIgnore;
|
import cn.idev.excel.annotation.ExcelProperty;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author mitao
|
* @date 2024/12/13
|
*/
|
@Data
|
@ApiModel("转运记录视图对象")
|
public class MwCheckoutRecordExcelVO implements Serializable {
|
|
private static final long serialVersionUID = -851971023455890457L;
|
|
@ApiModelProperty("记录id")
|
@ExcelIgnore
|
private Long id;
|
|
@ExcelProperty(value = "转运时间", index = 0)
|
private Date checkoutTime;
|
|
|
@ApiModelProperty("医院名称")
|
@ExcelProperty(value = "医院名称", index = 1)
|
private String hospitalName;
|
|
@ApiModelProperty("箱数")
|
@ExcelProperty(value = "箱数", index = 2)
|
private Integer boxNum;
|
|
@ApiModelProperty("袋数")
|
@ExcelProperty(value = "袋数", index = 3)
|
private Integer bagNum;
|
|
@ApiModelProperty("总重量")
|
@ExcelProperty(value = "重量(kg)", index = 4)
|
private BigDecimal totalWeight;
|
|
@ApiModelProperty("司机姓名")
|
@ExcelProperty(value = "司机姓名", index = 5)
|
private String driverName;
|
|
@ApiModelProperty("车牌号")
|
@ExcelProperty(value = "车牌号", index = 6)
|
private String licensePlateNumber;
|
|
@ApiModelProperty("转运线路")
|
@ExcelProperty(value = "转运路线", index = 7)
|
private String routeName;
|
|
}
|