|
|
|
@ -79,49 +79,40 @@ public class WmsStockQuan extends BaseBean {
|
|
|
|
|
private WmsLocate wmsLocate;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "可用数量", example = "0")
|
|
|
|
|
@Column(name = "QTY", columnDefinition = "decimal(18,8) default 0")
|
|
|
|
|
@ApiParam(value = "可用数量")
|
|
|
|
|
public Double qty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "FAIL_QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "不合格数量", example = "0")
|
|
|
|
|
@Column(name = "FAIL_QTY", columnDefinition = "decimal(18,8) default 0")
|
|
|
|
|
@ApiParam(value = "不合格数量")
|
|
|
|
|
private Double failQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "HOLD_QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "隔离数量", example = "0")
|
|
|
|
|
@Column(name = "HOLD_QTY", columnDefinition = "decimal(18,8) default 0")
|
|
|
|
|
@ApiParam(value = "隔离数量")
|
|
|
|
|
private Double holdQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "QC_QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "质检中数量", example = "0")
|
|
|
|
|
@Column(name = "QC_QTY", columnDefinition = "decimal(18,8) default 0")
|
|
|
|
|
@ApiParam(value = "质检中数量")
|
|
|
|
|
private Double qcQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "RIN_QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "待入库数量", example = "0")
|
|
|
|
|
@Column(name = "RIN_QTY", columnDefinition = "decimal(18,8) default 0")
|
|
|
|
|
@ApiParam(value = "待入库数量")
|
|
|
|
|
private Double rinQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "FREEZE_QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "冻结数量", example = "0")
|
|
|
|
|
@Column(name = "FREEZE_QTY", columnDefinition = "decimal(18,8) default 0")
|
|
|
|
|
@ApiParam(value = "冻结数量")
|
|
|
|
|
private Double freezeQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "CONSIGN_QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "寄售数量", example = "0")
|
|
|
|
|
@Column(name = "CONSIGN_QTY", columnDefinition = "decimal(18,8) default 0")
|
|
|
|
|
@ApiParam(value = "寄售数量")
|
|
|
|
|
private Double consignQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "LOCK_QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "锁定数量", example = "0")
|
|
|
|
|
@Column(name = "LOCK_QTY", columnDefinition = "decimal(18,8) default 0")
|
|
|
|
|
@ApiParam(value = "锁定数量")
|
|
|
|
|
private Double lockQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SCRAP_QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "报废数量", example = "0")
|
|
|
|
|
@Column(name = "SCRAP_QTY", columnDefinition = "decimal(18,8) default 0")
|
|
|
|
|
@ApiParam(value = "报废数量")
|
|
|
|
|
private Double scrapQty;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|