8 changed files with 65 additions and 1 deletions
@ -0,0 +1,46 @@ |
|||||||
|
package com.logpm.trunkline.vo; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
@Data |
||||||
|
public class CarsLoadWaybillInfoVO implements Serializable { |
||||||
|
|
||||||
|
private String waybillNo; |
||||||
|
private String orderCode; |
||||||
|
private Date createTime; |
||||||
|
private String destination; |
||||||
|
private String destinationWarehouseName; |
||||||
|
private String shipper; |
||||||
|
private String shipperName; |
||||||
|
private String consignee; |
||||||
|
private String consigneeName; |
||||||
|
private Integer waybillNum; |
||||||
|
private Integer orderNum; |
||||||
|
private Integer planNum; |
||||||
|
private Integer loadingNum; |
||||||
|
private Integer unloadNum; |
||||||
|
private BigDecimal unloadIncome; |
||||||
|
private BigDecimal orderLineCost; |
||||||
|
private String openPrice; |
||||||
|
private String goodsName; |
||||||
|
private BigDecimal weight; |
||||||
|
private BigDecimal volume; |
||||||
|
private String remark; |
||||||
|
private BigDecimal totalFreight; |
||||||
|
private BigDecimal orderFreight; |
||||||
|
private BigDecimal deliveryFee; |
||||||
|
private BigDecimal pickupFee; |
||||||
|
private BigDecimal warehouseManagementFee; |
||||||
|
private BigDecimal storageFee; |
||||||
|
private BigDecimal handlingFee; |
||||||
|
private BigDecimal otherFee; |
||||||
|
private BigDecimal insuranceFee; |
||||||
|
private BigDecimal totalFee; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue