12 changed files with 476 additions and 7 deletions
@ -0,0 +1,226 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.distribution.vo; |
||||||
|
|
||||||
|
import com.logpm.distribution.entity.DistributionStockArticleEntity; |
||||||
|
import com.logpm.distribution.vo.DistributionParcelListVO; |
||||||
|
import com.logpm.distribution.vo.DistributionParcelNumberVO; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.lang.reflect.Field; |
||||||
|
import java.util.Date; |
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* 已签收订单视图类 |
||||||
|
* |
||||||
|
* @author tjj |
||||||
|
* @since 2023-06-13 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class DistributionSignforStockArticleVO implements Serializable { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/** |
||||||
|
* 运单号 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "运单号") |
||||||
|
private String waybillNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 服务号 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "服务号") |
||||||
|
private String serviceNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 订单自编号 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "订单自编号") |
||||||
|
private String orderCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 商场名称 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "商场名称") |
||||||
|
private String mallName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 仓库名称 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "仓库名称") |
||||||
|
private String warehouseName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 最新入库时间 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "最新入库时间") |
||||||
|
private Date warehouseEntryTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 收货单位 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "收货单位") |
||||||
|
private String consigneeUnit; |
||||||
|
|
||||||
|
/** |
||||||
|
* 运单收货人 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "运单收货人") |
||||||
|
private String consigneePerson; |
||||||
|
|
||||||
|
/** |
||||||
|
* 品牌 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "品牌") |
||||||
|
private String brand; |
||||||
|
|
||||||
|
/** |
||||||
|
* 总数量 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "总数量") |
||||||
|
private Integer totalNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 在库数 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "在库数") |
||||||
|
private Integer handQuantity; |
||||||
|
/** |
||||||
|
* 出库数 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "出库数") |
||||||
|
private Integer deliveryNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 出库数 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "签收数") |
||||||
|
private Integer signForNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 备货数 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "备货数") |
||||||
|
private Integer stockUpNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 预约数 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预约数") |
||||||
|
private Integer reservationNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 订单状态 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "订单状态") |
||||||
|
private String orderStatusName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 是否零担 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "是否零担") |
||||||
|
private String isZeroName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 预约状态 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预约状态") |
||||||
|
private String orderReservationStatusName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 是否齐套 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "是否齐套") |
||||||
|
private String isCompleteSet; |
||||||
|
|
||||||
|
/** |
||||||
|
* 是否齐套 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "服务类型") |
||||||
|
private String typeServiceName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 预约信息 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预约信息") |
||||||
|
private String reservationInfo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车次信息 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "车次信息") |
||||||
|
private String deliveryListInfo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机信息 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "司机信息") |
||||||
|
private String driverName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车辆信息 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "车辆信息") |
||||||
|
private String vehicleName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 审核人 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "审核人") |
||||||
|
private String examineUserNames; |
||||||
|
|
||||||
|
/** |
||||||
|
* 最早入库时间 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "最早入库时间") |
||||||
|
private Date earliestWarehouseEntryTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "创建时间") |
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "创建人") |
||||||
|
private Long createUser; |
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "创建人") |
||||||
|
private String createUserName; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "签收时间") |
||||||
|
private Date signinTime; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,32 @@ |
|||||||
|
package com.logpm.distribution.dto; |
||||||
|
|
||||||
|
import com.logpm.distribution.entity.DistributionStockArticleEntity; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @program: LogisticsPlatform-Service |
||||||
|
* @description: |
||||||
|
* @author: cyz |
||||||
|
* @create: 2023-09-06 20:57 |
||||||
|
**/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
public class DistributionSignforStockArticleDTO extends DistributionStockArticleEntity { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
private String orderCodeNum; //订单号
|
||||||
|
private List<String> orderCodeNumList; |
||||||
|
private String orderCodeNumLike; |
||||||
|
private String waybillNum; //订单号
|
||||||
|
private List<String> waybillNumList; |
||||||
|
private String waybillNumLike; |
||||||
|
private String ids; |
||||||
|
private List<String> idsList; |
||||||
|
private String idsLike; |
||||||
|
private String reservation; |
||||||
|
private String startDate; |
||||||
|
private String entDate; |
||||||
|
private List<Long> warehouseIdList; |
||||||
|
} |
Loading…
Reference in new issue