11 changed files with 153 additions and 0 deletions
@ -0,0 +1,30 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class ZeroOrderVO 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 String goodsName; |
||||
private Integer totalNum; |
||||
private Integer stockNum; |
||||
private BigDecimal price; |
||||
private BigDecimal weight; |
||||
private BigDecimal volume; |
||||
private String customerTrain; |
||||
private String remark; |
||||
|
||||
} |
Loading…
Reference in new issue