Files
scrq-hd/.svn/pristine/34/34ca6c77cdcef9e449969f6e65519877fd18fa33.svn-base
2025-07-03 10:34:04 +08:00

89 lines
1.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}