|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.wms.bean;
|
|
|
|
|
|
|
|
|
|
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.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
@ -30,6 +32,7 @@ public class WmsActionGroupDetails extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Column(name = "AG_ID")
|
|
|
|
|
@ApiParam(value = "作业流程ID", example = "0")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long agId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SEQ")
|
|
|
|
@ -58,6 +61,7 @@ public class WmsActionGroupDetails extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Column(name = "AS_ID")
|
|
|
|
|
@ApiParam(value = "作业步骤", example = "0")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long asId;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "作业步骤名称")
|
|
|
|
|