|
|
|
@ -2,6 +2,8 @@ package cn.estsh.i3plus.pojo.wms.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
@ -31,6 +33,7 @@ public class WmsActionStepCallParam extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Column(name = "AGD_ID")
|
|
|
|
|
@ApiParam(value = "流程明细编号")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long agdId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SEQ")
|
|
|
|
@ -39,6 +42,7 @@ public class WmsActionStepCallParam extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Column(name = "AM_ID")
|
|
|
|
|
@ApiParam(value = "处理组件编号")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long amId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "PARAM_CODE")
|
|
|
|
|