89 lines
1.9 KiB
Plaintext
89 lines
1.9 KiB
Plaintext
package com.cmeim.biz.vo;
|
||
|
||
/**
|
||
* 作者: 徐一码
|
||
* 时间: 2022/10/8
|
||
*
|
||
* @author XXL
|
||
*/
|
||
|
||
import com.cmeim.biz.query.annotation.FieldProps;
|
||
import io.swagger.annotations.ApiParam;
|
||
import lombok.Data;
|
||
|
||
import javax.persistence.Column;
|
||
import java.math.BigDecimal;
|
||
|
||
@Data
|
||
public class TaskElectronVo {
|
||
|
||
private Long taskId;
|
||
|
||
@ApiParam(value = "物料条码")
|
||
private String materialBar;
|
||
|
||
@ApiParam(value = "处理时间")
|
||
private Long processTime;
|
||
|
||
@ApiParam(value = "货架位置")
|
||
private String locationCode;
|
||
|
||
@ApiParam(value = "上架数量")
|
||
private BigDecimal taskQty;
|
||
|
||
@ApiParam(value = "0创建,1成功,2失败")
|
||
private Integer taskStatus;
|
||
|
||
private Long barId;
|
||
|
||
@ApiParam(value = "物料编码")
|
||
private String materialCode;
|
||
|
||
@ApiParam(value = "物料名称")
|
||
private String materialName;
|
||
|
||
@ApiParam(value = "规格型号")
|
||
private String materialSpec;
|
||
|
||
@ApiParam(value = "批次号")
|
||
private String barBatchNo;
|
||
|
||
@ApiParam(value = "条码数量")
|
||
private BigDecimal barQty;
|
||
|
||
@ApiParam(value = "条码库位")
|
||
private String barLocationCode;
|
||
|
||
@ApiParam(value = "条码仓库")
|
||
private String barWarehouseCode;
|
||
|
||
@ApiParam(value = "条码管理模式")
|
||
private Integer barStockSaveType;
|
||
|
||
private Long stockId;
|
||
|
||
@ApiParam(value = "批次号")
|
||
private String stockBatchNo;
|
||
|
||
@ApiParam(value = "库存数量")
|
||
private BigDecimal stockQty;
|
||
|
||
@ApiParam(value = "库存库位")
|
||
private String stockLocationCode;
|
||
|
||
@ApiParam(value = "库存条码")
|
||
private String stockMaterialBar;
|
||
|
||
@ApiParam(value = "库存仓库")
|
||
private String stockWarehouseCode;
|
||
|
||
@ApiParam(value = "库存管理模式")
|
||
private Integer stockStockSaveType;
|
||
|
||
@ApiParam(value = "线边仓是否存在 0不存在 1存在")
|
||
private Integer areaStatsus;
|
||
|
||
private Long areaId;
|
||
|
||
}
|