16 changed files with 322 additions and 5 deletions
@ -0,0 +1,13 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
@Data |
||||
public class LoadingListGoodsVO implements Serializable { |
||||
|
||||
private String goodsName; |
||||
private Integer num; |
||||
|
||||
} |
@ -0,0 +1,30 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.ArrayList; |
||||
import java.util.Date; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class LoadingListMainVO implements Serializable { |
||||
|
||||
|
||||
private String orderCode; |
||||
private String waybillNo; |
||||
private Integer type; |
||||
private Date createTime; |
||||
private String departureWarehouseName; |
||||
private String destinationWarehouseName; |
||||
private String shipper; |
||||
private String consignee; |
||||
private String consigneeName; |
||||
private String consigneeMobile; |
||||
private Integer unloadNum; |
||||
private Integer planNum; |
||||
private Integer smallTotal; |
||||
|
||||
private List<LoadingListGoodsVO> goodsList = new ArrayList<>(); |
||||
|
||||
} |
@ -0,0 +1,21 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import com.logpm.trunkline.entity.TrunklineCarsLoadEntity; |
||||
import lombok.Data; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.Date; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class TrunklineCarsLoadLoadingListVO extends TrunklineCarsLoadEntity { |
||||
|
||||
private String stopoverStation; |
||||
|
||||
private Date unloadDate; |
||||
|
||||
private String unloadUserName; |
||||
|
||||
private List<LoadingListMainVO> mainList = new ArrayList(); |
||||
|
||||
} |
Loading…
Reference in new issue