|
|
|
@ -49,33 +49,33 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
@ApiParam(value = "初始化组件编号", example = "0")
|
|
|
|
|
private Long initAmId;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "初始化组件名称")
|
|
|
|
|
private String initAmName;
|
|
|
|
|
// @Transient
|
|
|
|
|
// @ApiParam(value = "初始化组件名称")
|
|
|
|
|
// private String initAmName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "DETAILS_AM_ID")
|
|
|
|
|
@ApiParam(value = "明细处理组件编号", example = "0")
|
|
|
|
|
private Long detailsAmId;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "明细处理组件名称")
|
|
|
|
|
private String detailsAmName;
|
|
|
|
|
// @Transient
|
|
|
|
|
// @ApiParam(value = "明细处理组件名称")
|
|
|
|
|
// private String detailsAmName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SUBMIT_AM_ID")
|
|
|
|
|
@ApiParam(value = "提交组件编号", example = "0")
|
|
|
|
|
private Long submitAmId;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "提交组件名称")
|
|
|
|
|
private String submitAmName;
|
|
|
|
|
// @Transient
|
|
|
|
|
// @ApiParam(value = "提交组件名称")
|
|
|
|
|
// private String submitAmName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "END_AM_ID")
|
|
|
|
|
@ApiParam(value = "结束组件编号", example = "0")
|
|
|
|
|
private Long endAmId;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "结束组件名称")
|
|
|
|
|
private String endAmName;
|
|
|
|
|
//
|
|
|
|
|
// @Transient
|
|
|
|
|
// @ApiParam(value = "结束组件名称")
|
|
|
|
|
// private String endAmName;
|
|
|
|
|
|
|
|
|
|
// 1=true, 2 = false
|
|
|
|
|
@Column(name = "AUTO_INIT")
|
|
|
|
@ -108,20 +108,4 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
|
|
|
|
|
public WmsActionGroup() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsActionGroup(String agNameE, String agDescE, String agNameC, String agDescC, Integer autoInit, Long initAmId, String initAmName, Long detailsAmId, String detailsAmName, Long submitAmId, String submitAmName, Long endAmId, String endAmName) {
|
|
|
|
|
this.agNameE = agNameE;
|
|
|
|
|
this.agDescE = agDescE;
|
|
|
|
|
this.agNameC = agNameC;
|
|
|
|
|
this.agDescC = agDescC;
|
|
|
|
|
this.autoInit = autoInit;
|
|
|
|
|
this.initAmId = initAmId;
|
|
|
|
|
this.initAmName = initAmName;
|
|
|
|
|
this.detailsAmId = detailsAmId;
|
|
|
|
|
this.detailsAmName = detailsAmName;
|
|
|
|
|
this.submitAmId = submitAmId;
|
|
|
|
|
this.submitAmName = submitAmName;
|
|
|
|
|
this.endAmId = endAmId;
|
|
|
|
|
this.endAmName = endAmName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|