|
|
@ -1,6 +1,8 @@
|
|
|
|
package cn.estsh.i3plus.pojo.wms.bean;
|
|
|
|
package cn.estsh.i3plus.pojo.wms.bean;
|
|
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.Data;
|
|
|
@ -47,6 +49,7 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "INIT_AM_ID")
|
|
|
|
@Column(name = "INIT_AM_ID")
|
|
|
|
@ApiParam(value = "初始化组件编号", example = "0")
|
|
|
|
@ApiParam(value = "初始化组件编号", example = "0")
|
|
|
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
private Long initAmId;
|
|
|
|
private Long initAmId;
|
|
|
|
|
|
|
|
|
|
|
|
// @Transient
|
|
|
|
// @Transient
|
|
|
@ -55,6 +58,7 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "DETAILS_AM_ID")
|
|
|
|
@Column(name = "DETAILS_AM_ID")
|
|
|
|
@ApiParam(value = "明细处理组件编号", example = "0")
|
|
|
|
@ApiParam(value = "明细处理组件编号", example = "0")
|
|
|
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
private Long detailsAmId;
|
|
|
|
private Long detailsAmId;
|
|
|
|
|
|
|
|
|
|
|
|
// @Transient
|
|
|
|
// @Transient
|
|
|
@ -63,6 +67,7 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "SUBMIT_AM_ID")
|
|
|
|
@Column(name = "SUBMIT_AM_ID")
|
|
|
|
@ApiParam(value = "提交组件编号", example = "0")
|
|
|
|
@ApiParam(value = "提交组件编号", example = "0")
|
|
|
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
private Long submitAmId;
|
|
|
|
private Long submitAmId;
|
|
|
|
|
|
|
|
|
|
|
|
// @Transient
|
|
|
|
// @Transient
|
|
|
@ -71,6 +76,7 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "END_AM_ID")
|
|
|
|
@Column(name = "END_AM_ID")
|
|
|
|
@ApiParam(value = "结束组件编号", example = "0")
|
|
|
|
@ApiParam(value = "结束组件编号", example = "0")
|
|
|
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
private Long endAmId;
|
|
|
|
private Long endAmId;
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// @Transient
|
|
|
|
// @Transient
|
|
|
|