8 changed files with 238 additions and 52 deletions
@ -0,0 +1,99 @@ |
|||||||
|
package com.logpm.distribution.vo; |
||||||
|
|
||||||
|
import io.swagger.models.auth.In; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* 配送客户清单打印实体 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class DistributionDeliveryListPrintReponseVO { |
||||||
|
|
||||||
|
/** |
||||||
|
* id |
||||||
|
*/ |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 配送客户单号 |
||||||
|
*/ |
||||||
|
private String reservationCode; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 商城名称 |
||||||
|
*/ |
||||||
|
private String mallName; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 门店名称 |
||||||
|
*/ |
||||||
|
private String storeName; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 订单自编号集合 |
||||||
|
*/ |
||||||
|
private String orderSelfNumberings; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 收货人 |
||||||
|
*/ |
||||||
|
private String consignee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 收货人电话 |
||||||
|
*/ |
||||||
|
private String deliveryPhone; |
||||||
|
|
||||||
|
/** |
||||||
|
* 收货地址 |
||||||
|
*/ |
||||||
|
private String deliveryAddress; |
||||||
|
|
||||||
|
/** |
||||||
|
* 计划数量 |
||||||
|
*/ |
||||||
|
private Integer planNum; |
||||||
|
|
||||||
|
/** |
||||||
|
* 装车数 |
||||||
|
*/ |
||||||
|
private Integer loadCarNum; |
||||||
|
|
||||||
|
/** |
||||||
|
* 签收数 |
||||||
|
*/ |
||||||
|
private Integer signNum; |
||||||
|
|
||||||
|
/** |
||||||
|
* 回库数 |
||||||
|
*/ |
||||||
|
private Integer recycleNum; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 回库订单编号集合 |
||||||
|
*/ |
||||||
|
private Integer recycleOrderSelfNumbers; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新时间 |
||||||
|
*/ |
||||||
|
private Date updateTime; |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,22 @@ |
|||||||
|
package com.logpm.distribution.vo; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* 配送客户请求VO |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class DistributionDeliveryListPrintRequestVO { |
||||||
|
|
||||||
|
|
||||||
|
private String deliveryId; |
||||||
|
/** |
||||||
|
* 配送单号 |
||||||
|
*/ |
||||||
|
private String noteNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 商城名称 |
||||||
|
*/ |
||||||
|
private String mallName; |
||||||
|
} |
Loading…
Reference in new issue