|
|
@ -1,7 +1,10 @@
|
|
|
|
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.ApiOperation;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
@ -29,7 +32,8 @@ import javax.persistence.Table;
|
|
|
|
public class WmsActionStepCall extends BaseBean {
|
|
|
|
public class WmsActionStepCall extends BaseBean {
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="AS_ID")
|
|
|
|
@Column(name="AS_ID")
|
|
|
|
@ApiParam("作业步骤ID")
|
|
|
|
@ApiParam(value = "作业步骤ID",example = "0")
|
|
|
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
public Long asId;
|
|
|
|
public Long asId;
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="SEQ")
|
|
|
|
@Column(name="SEQ")
|
|
|
@ -37,6 +41,13 @@ public class WmsActionStepCall extends BaseBean {
|
|
|
|
public Integer seq;
|
|
|
|
public Integer seq;
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="AM_ID")
|
|
|
|
@Column(name="AM_ID")
|
|
|
|
@ApiParam("处理组件ID")
|
|
|
|
@ApiParam(value = "处理组件ID",example = "0")
|
|
|
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
public Long amId;
|
|
|
|
public Long amId;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "组件名称")
|
|
|
|
|
|
|
|
public transient String amName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "组件描述")
|
|
|
|
|
|
|
|
public transient String amDesc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|