|
|
|
@ -5,6 +5,7 @@ import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.ColumnDefault;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
@ -93,34 +94,42 @@ public class WmsTransQuan extends BaseBean {
|
|
|
|
|
private String errorMessage;
|
|
|
|
|
|
|
|
|
|
@Column(name = "QTY")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "可用数量", example = "0")
|
|
|
|
|
public Double qty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "FAIL_QTY")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "不合格数量", example = "0")
|
|
|
|
|
private Double failQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "HOLD_QTY")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "隔离数量", example = "0")
|
|
|
|
|
private Double holdQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "QC_QTY")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "质检中数量", example = "0")
|
|
|
|
|
private Double qcQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "RIN_QTY")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "待入库数量", example = "0")
|
|
|
|
|
private Double rinQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "FREEZE_QTY")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "冻结数量", example = "0")
|
|
|
|
|
private Double freezeQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "CONSIGN_QTY")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "寄售数量", example = "0")
|
|
|
|
|
private Double consignQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "LOCK_QTY")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "锁定数量", example = "0")
|
|
|
|
|
private Double lockQty;
|
|
|
|
|
}
|
|
|
|
|