|
|
|
@ -35,7 +35,6 @@ public class WmsActionStepCallParam extends BaseBean {
|
|
|
|
|
@Column(name = "AGD_ID")
|
|
|
|
|
@ApiParam(value = "流程明细编号")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
|
|
|
|
|
private Long agdId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SEQ")
|
|
|
|
@ -59,4 +58,15 @@ public class WmsActionStepCallParam extends BaseBean {
|
|
|
|
|
@ApiParam(value = "组件名称")
|
|
|
|
|
private String amName;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "流程ID")
|
|
|
|
|
private Long agId;
|
|
|
|
|
|
|
|
|
|
public WmsActionStepCallParam() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsActionStepCallParam(Long id, Long agId) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.agId = agId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|