zhenghaoyu
6 months ago
22 changed files with 506 additions and 8 deletions
@ -0,0 +1,78 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class BillladingWaybillExportVO implements Serializable { |
||||
|
||||
@ExcelProperty(value = "提货批次") |
||||
private String billadingCode; |
||||
|
||||
@ExcelProperty(value = "运单号") |
||||
private String waybillNo; |
||||
|
||||
@ExcelProperty(value = "开单时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date openOrderTime; |
||||
|
||||
@ExcelProperty(value = "货物名称") |
||||
private String goodsName; |
||||
|
||||
@ExcelProperty(value = "扫描件数") |
||||
private Integer scanNum; |
||||
|
||||
@ExcelProperty(value = "提货件数") |
||||
private Integer realNum; |
||||
|
||||
@ExcelProperty(value = "提货重量") |
||||
private BigDecimal realWeight; |
||||
|
||||
@ExcelProperty(value = "提货体积") |
||||
private BigDecimal realVolume; |
||||
|
||||
@ExcelProperty(value = "到站") |
||||
private String destination; |
||||
|
||||
@ExcelProperty(value = "目的仓") |
||||
private String destinationWarehouseName; |
||||
|
||||
@ExcelProperty(value = "发货人") |
||||
private String shipperName; |
||||
|
||||
@ExcelProperty(value = "发货单位") |
||||
private String shipper; |
||||
|
||||
@ExcelProperty(value = "发货手机") |
||||
private String shipperMobile; |
||||
|
||||
@ExcelProperty(value = "收货人") |
||||
private String consigneeName; |
||||
|
||||
@ExcelProperty(value = "收货单位") |
||||
private String consignee; |
||||
|
||||
@ExcelProperty(value = "收货电话") |
||||
private String consigneeMobile; |
||||
|
||||
@ExcelProperty(value = "收货地址") |
||||
private String consigneeAddress; |
||||
|
||||
@ExcelProperty(value = "备注") |
||||
private String remark; |
||||
|
||||
@ExcelProperty(value = "支付方式") |
||||
private BigDecimal collectPay; |
||||
|
||||
@ExcelProperty(value = "提货费用") |
||||
private BigDecimal billladingFee; |
||||
|
||||
@ExcelProperty(value = "运输费用") |
||||
private BigDecimal totalFreight; |
||||
|
||||
} |
@ -0,0 +1,78 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class TrunklineBillladingExportVO implements Serializable { |
||||
|
||||
@ExcelProperty(value = "提货批次") |
||||
private String billladingCode ; |
||||
|
||||
@ExcelProperty(value = "车牌号") |
||||
private String carNumber ; |
||||
|
||||
@ExcelProperty(value = "司机名称") |
||||
private String driverName ; |
||||
|
||||
@ExcelProperty(value = "司机电话") |
||||
private String driverPhone ; |
||||
|
||||
@ExcelProperty(value = "仓库名称") |
||||
private String warehouseName ; |
||||
|
||||
@ExcelProperty(value = "线路名称") |
||||
private String lineNameTitle ; |
||||
|
||||
@ExcelProperty(value = "提货开始时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date startTime ; |
||||
@ExcelProperty(value = "提货完成时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date endTime ; |
||||
|
||||
@ExcelProperty(value = "状态") |
||||
private String billladingStatus ; |
||||
|
||||
@ExcelProperty(value = "计费模式") |
||||
private String chargeType ; |
||||
|
||||
@ExcelProperty(value = "提货费用") |
||||
private BigDecimal totalFee ; |
||||
|
||||
@ExcelProperty(value = "备注") |
||||
private String remark ; |
||||
|
||||
@ExcelProperty(value = "承运商") |
||||
private String carrierName ; |
||||
|
||||
@ExcelProperty(value = "单数") |
||||
private Integer orderNum; |
||||
|
||||
@ExcelProperty(value = "件数") |
||||
private Integer realNum; |
||||
|
||||
@ExcelProperty(value = "预计件数") |
||||
private Integer planNum ; |
||||
|
||||
@ExcelProperty(value = "重量") |
||||
private BigDecimal realWeight ; |
||||
|
||||
@ExcelProperty(value = "计划重量") |
||||
private BigDecimal planWeight ; |
||||
|
||||
@ExcelProperty(value = "体积") |
||||
private BigDecimal realVolume ; |
||||
|
||||
@ExcelProperty(value = "计划体积") |
||||
private BigDecimal planVolume ; |
||||
|
||||
@ExcelProperty(value = "创建人") |
||||
private String createUserName ; |
||||
|
||||
} |
Loading…
Reference in new issue