更新POJO

yun-zuoyi
柯裕 6 years ago
parent f662140075
commit 398a3d98c5

@ -909,7 +909,7 @@ public class WmsEnumUtil {
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum TASK_INFO_STATUS {
CREATE(10, "创建"), FINISH(20, "处理"), FAIL(30, "已处理");
CREATE(10, "创建"), FINISH(20, "处理"), FAIL(30, "已处理");
private int value;
private String description;

@ -29,4 +29,13 @@ public class TransSnModle extends BaseComponetsParam{
@ApiParam(value = "分组编号")
public String packageNo;
/**
*
*/
public double cpQty;
/**
*
*/
public String dateCode;
}

@ -29,6 +29,14 @@ import javax.persistence.Transient;
@Api("抽点记录信息")
public class WmsCheckFactRecord extends BaseBean {
@Column(name = "REF_TYPE")
@ApiParam(value = "关联单据类型")
private String refType;
@Column(name = "REF_SRC")
@ApiParam(value = "关联单据编号")
private String refSrc;
@Column(name="PO_NO")
@ApiParam("采购单号")
public String poNo;

@ -49,19 +49,23 @@ public class WmsDocMovementSn extends BaseBean {
@ApiParam(value = "数量", example = "0")
public Double qty;
// @Column(name="TRANS_QTY")
// @ApiParam(value = "处理数量", example = "0")
// public Double transQty;
@Column(name="UNIT")
@ApiParam("单位")
public String unit;
/**
* :10 = 20 = 30 =
* :
*/
@Column(name="SN_STATUS")
@ApiParam(value = "状态", example = "10")
public Integer snStatus;
@Column(name="SN_1D")
@Column(name="SN")
@ApiParam("一维条码")
public String snOneBarCode;
public String sn;
}

Loading…
Cancel
Save