企业端、监管端流程同步
parent
a7d4a94372
commit
7c9fafee5d
|
@ -31,7 +31,7 @@ public class JiTuanSupervise extends NodeComponent {
|
|||
XgfFlowDto info = this.getRequestData();
|
||||
PageData condition = new PageData();
|
||||
|
||||
condition.put("XGF_USER_ID", info.getFLOWS_ID());
|
||||
condition.put("FLOWS_ID", info.getFLOWS_ID());
|
||||
PageData flows = xgfFlowsMapper.findById(condition);
|
||||
|
||||
if (flows == null || flows.size() == 0) {
|
||||
|
|
|
@ -36,7 +36,7 @@ public class JiTuanWeiTuoCharge extends NodeComponent {
|
|||
XgfFlowDto info = this.getRequestData();
|
||||
PageData condition = new PageData();
|
||||
|
||||
condition.put("XGF_USER_ID", info.getFLOWS_ID());
|
||||
condition.put("FLOWS_ID", info.getFLOWS_ID());
|
||||
PageData flows = xgfFlowsMapper.findById(condition);
|
||||
|
||||
// 如果指针没有数据,赋值后自动结束
|
||||
|
|
|
@ -36,7 +36,7 @@ public class JiTuanWeiTuoSupervise extends NodeComponent {
|
|||
XgfFlowDto info = this.getRequestData();
|
||||
PageData condition = new PageData();
|
||||
|
||||
condition.put("XGF_USER_ID", info.getFLOWS_ID());
|
||||
condition.put("FLOWS_ID", info.getFLOWS_ID());
|
||||
PageData flows = xgfFlowsMapper.findById(condition);
|
||||
|
||||
// 如果指针没有数据,赋值后自动结束
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
package com.zcloud.flow.xgf.util;
|
||||
|
||||
import com.zcloud.entity.PageData;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
|
@ -12,9 +11,9 @@ public class XgfFlowDto {
|
|||
private String FLOWS_ID;
|
||||
|
||||
// 步骤编码
|
||||
public String FLOWS_STEP;
|
||||
private String FLOWS_STEP;
|
||||
|
||||
public String FLOWS_TYPE;
|
||||
private String FLOWS_TYPE;
|
||||
|
||||
// 审批结果0-不通过,1-通过
|
||||
private String STATUS;
|
||||
|
|
Loading…
Reference in New Issue