流程设计界面:查询组件列表根据作业类型名称分组返回给前端+每个步骤开始前都重新获取当前流程明细的步骤参数并放入缓存(BUG#6304)

yun-zuoyi
许心洁 6 years ago
parent 1720952d23
commit b0c4d11000

@ -52,4 +52,22 @@ public class WmsActionModule extends BaseBean {
@Column(name = "IS_SHOW_INFO")
@ApiParam(value = "是否实现回显", example = "0")
public Integer isShowInfo;
@ApiParam(value = "作业类型名称", example = "0")
public String opTypeName;
public WmsActionModule() {
}
public WmsActionModule(Long id, String amName, String amDesc, String callClass,
Integer amType, String opTypeCode, Integer isShowInfo, String opTypeName) {
this.id = id;
this.amName = amName;
this.amDesc = amDesc;
this.callClass = callClass;
this.amType = amType;
this.opTypeCode = opTypeCode;
this.isShowInfo = isShowInfo;
this.opTypeName = opTypeName;
}
}

Loading…
Cancel
Save