10 changed files with 462 additions and 3 deletions
@ -0,0 +1,189 @@
|
||||
/* |
||||
* 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.DistributionReservationStocklistEntity; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 预约库存中间表 视图实体类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-28 |
||||
*/ |
||||
@Data |
||||
public class DistributionReservationInventoryPackageVO{ |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
|
||||
|
||||
|
||||
/** |
||||
* 库存品包条码 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包条码") |
||||
private String stockPackageCode; |
||||
|
||||
/** |
||||
* 库存品包件Id |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件Id") |
||||
private Long id; |
||||
|
||||
/** |
||||
* 库存品包件装车状态 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件装车状态") |
||||
private String stockLockingStatus; |
||||
|
||||
/** |
||||
* 库存品包件装车状态 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件装车状态") |
||||
private String stockLockingStatusName; |
||||
|
||||
/** |
||||
* 库存品包件装车状态 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件装车状态") |
||||
private String stockStatus; |
||||
|
||||
/** |
||||
* 库存品包件备货状态 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件备货状态") |
||||
private String stockStatusName; |
||||
|
||||
|
||||
/** |
||||
* 库存品包件签收状态 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件签收状态") |
||||
private String stockSignfoStatus; |
||||
|
||||
/** |
||||
* 库存品包件签收状态 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件签收状态") |
||||
private String stockSignfoStatusName; |
||||
|
||||
/** |
||||
* 库存品计划出库数量 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品计划出库数量") |
||||
private Integer num; |
||||
|
||||
/** |
||||
* 库存品包件物料编码 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件物料编码") |
||||
private String cargoNumber; |
||||
|
||||
/** |
||||
* 库存品包件订单自编码 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件订单自编码") |
||||
private String orderCode; |
||||
|
||||
/** |
||||
* 库存品包件入库批次号 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件入库批次号") |
||||
private String incomingBatch; |
||||
|
||||
/** |
||||
* 库存品包件物料名称 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件物料名称") |
||||
private String descriptionGoods; |
||||
|
||||
/** |
||||
* 库存品包件物料单位 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件物料单位") |
||||
private String cargoUnit; |
||||
|
||||
|
||||
/** |
||||
* 库存品包件商场名称 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件商场名称") |
||||
private String marketName; |
||||
|
||||
|
||||
/** |
||||
* 库存品包件品牌信息 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件品牌信息") |
||||
private String brandName; |
||||
|
||||
/** |
||||
* 库存品包件计划装车人 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件计划装车人") |
||||
private String driverName; |
||||
|
||||
/** |
||||
* 库存品包件计划装车车牌 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件计划装车车牌") |
||||
private String vehicleName; |
||||
|
||||
/** |
||||
* 库存品包件装车方式 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件装车方式") |
||||
private String scanStatus; |
||||
|
||||
/** |
||||
* 库存品包件装车时间 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件装车时间") |
||||
private String scanTime; |
||||
|
||||
|
||||
/** |
||||
* 库存品包件装车数量 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件装车数量") |
||||
private Integer loadedNub; |
||||
|
||||
/** |
||||
* 库存品包件装车人 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件装车人") |
||||
private String scanUser; |
||||
|
||||
/** |
||||
* 库存品包件签收人 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件签收人") |
||||
private String signingUser; |
||||
|
||||
/** |
||||
* 库存品包件签收时间 |
||||
*/ |
||||
@ApiModelProperty(value = "库存品包件签收时间") |
||||
private String signingTime; |
||||
|
||||
|
||||
|
||||
} |
Loading…
Reference in new issue