|
|
@ -18,6 +18,8 @@ package com.logpm.distribution.vo; |
|
|
|
|
|
|
|
|
|
|
|
import com.logpm.distribution.entity.DistrilbutionBillLadingEntity; |
|
|
|
import com.logpm.distribution.entity.DistrilbutionBillLadingEntity; |
|
|
|
import com.logpm.distribution.vo.app.DistrilbutionAppBillLadingDetailVO; |
|
|
|
import com.logpm.distribution.vo.app.DistrilbutionAppBillLadingDetailVO; |
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
|
|
|
|
|
|
|
@ -33,6 +35,7 @@ import java.util.List; |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@Data |
|
|
|
@Data |
|
|
|
@EqualsAndHashCode(callSuper = true) |
|
|
|
@EqualsAndHashCode(callSuper = true) |
|
|
|
|
|
|
|
@ApiModel(value="自提实体", description="自提实体") |
|
|
|
public class DistrilbutionBillLadingAppVO extends DistrilbutionBillLadingEntity { |
|
|
|
public class DistrilbutionBillLadingAppVO extends DistrilbutionBillLadingEntity { |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
|
|
|
@ -42,33 +45,46 @@ public class DistrilbutionBillLadingAppVO extends DistrilbutionBillLadingEntity |
|
|
|
|
|
|
|
|
|
|
|
private Integer carType; |
|
|
|
private Integer carType; |
|
|
|
private String carTypeStr; |
|
|
|
private String carTypeStr; |
|
|
|
|
|
|
|
@ApiModelProperty(value = "提货状态") |
|
|
|
private String condition;//提货状态
|
|
|
|
private String condition;//提货状态
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "提货状态") |
|
|
|
private String conditionStr;//提货状态
|
|
|
|
private String conditionStr;//提货状态
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "车牌号") |
|
|
|
private String pickUpPlate;//车牌号
|
|
|
|
private String pickUpPlate;//车牌号
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "提货人") |
|
|
|
private String consignee;//提货人
|
|
|
|
private String consignee;//提货人
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "备货状态") |
|
|
|
private String stockupStatus;//备货状态
|
|
|
|
private String stockupStatus;//备货状态
|
|
|
|
|
|
|
|
// @ApiModelProperty(value = "分类")
|
|
|
|
private String stockupStatusStr; |
|
|
|
private String stockupStatusStr; |
|
|
|
|
|
|
|
@ApiModelProperty(value = "制单时间") |
|
|
|
private Date createTime;//制单时间
|
|
|
|
private Date createTime;//制单时间
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "提货时间") |
|
|
|
private Date pickUpTime;//提货时间
|
|
|
|
private Date pickUpTime;//提货时间
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "订单总数") |
|
|
|
private Integer orderNum;//订单总数
|
|
|
|
private Integer orderNum;//订单总数
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "自提件数") |
|
|
|
private Integer planNum;//自提件数
|
|
|
|
private Integer planNum;//自提件数
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "签收总数") |
|
|
|
private Integer signedNum;//签收总数
|
|
|
|
private Integer signedNum;//签收总数
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "签收总数") |
|
|
|
private Integer inventoryNum;//签收总数
|
|
|
|
private Integer inventoryNum;//签收总数
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "齐套总数") |
|
|
|
private Integer completeNum;//齐套总数
|
|
|
|
private Integer completeNum;//齐套总数
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "库存品id") |
|
|
|
private String stockListId;//库存品id
|
|
|
|
private String stockListId;//库存品id
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "库存数量") |
|
|
|
private Integer quantity;//库存数量
|
|
|
|
private Integer quantity;//库存数量
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "物品名称") |
|
|
|
private String descriptionGoods;//物品名称
|
|
|
|
private String descriptionGoods;//物品名称
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "单位") |
|
|
|
private String cargoUnit;//单位
|
|
|
|
private String cargoUnit;//单位
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "sku") |
|
|
|
private String sku;//sku
|
|
|
|
private String sku;//sku
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "备货数量") |
|
|
|
private Integer deliveryNum;//备货数量
|
|
|
|
private Integer deliveryNum;//备货数量
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "以扫备货数量") |
|
|
|
private Integer esauInventoryNum;//以扫备货数量
|
|
|
|
private Integer esauInventoryNum;//以扫备货数量
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|