Commit b8e0fea6 by “zcwang”

modify: 无效依赖去除

parent 35460201
...@@ -8,21 +8,17 @@ package com.netease.mail.yanxuan.change.integration.flow; ...@@ -8,21 +8,17 @@ package com.netease.mail.yanxuan.change.integration.flow;
import java.util.List; import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.springframework.http.MediaType; import org.springframework.http.MediaType;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
import com.netease.yanxuan.bpmstore.meta.AjaxResult;
import com.netease.yanxuan.flowx.sdk.meta.controller.communal.AjaxResponse; import com.netease.yanxuan.flowx.sdk.meta.controller.communal.AjaxResponse;
import com.netease.yanxuan.flowx.sdk.meta.dto.base.FlowDataDTO; import com.netease.yanxuan.flowx.sdk.meta.dto.base.FlowDataDTO;
import com.netease.yanxuan.flowx.sdk.meta.dto.flow.FlowCreateReqDTO; import com.netease.yanxuan.flowx.sdk.meta.dto.flow.FlowCreateReqDTO;
import com.netease.yanxuan.missa.client.annotation.MissaClient; import com.netease.yanxuan.missa.client.annotation.MissaClient;
import jdk.internal.org.objectweb.asm.tree.analysis.Value;
/** /**
* @Author zcwang * @Author zcwang
* @Date 2022/11/16 * @Date 2022/11/16
...@@ -38,12 +34,13 @@ public interface FlowRpcService { ...@@ -38,12 +34,13 @@ public interface FlowRpcService {
* @param req * @param req
* @return * @return
*/ */
@PostMapping(value ="/{product}/workOrderFlow/v1/create", consumes = MediaType.APPLICATION_JSON_VALUE) @PostMapping(value = "/{product}/workOrderFlow/v1/create", consumes = MediaType.APPLICATION_JSON_VALUE)
AjaxResponse<String> create(@PathVariable("product") String product, FlowCreateReqDTO req); AjaxResponse<String> create(@PathVariable("product") String product, FlowCreateReqDTO req);
@GetMapping(value = "/{product}/workOrder/v1/{flowId}/detail") @GetMapping(value = "/{product}/workOrder/v1/{flowId}/detail")
AjaxResponse<FlowDataDTO> getDetail(@PathVariable("product") String flowxProduct, @PathVariable("flowId") String flowId); AjaxResponse<FlowDataDTO> getDetail(@PathVariable("product") String flowxProduct,
@PathVariable("flowId") String flowId);
@PostMapping(value = "/{product}/workOrderFlow/v1/submit") @PostMapping(value = "/{product}/workOrderFlow/v1/submit")
AjaxResponse<List<String>> submit(@PathVariable("product")String flowxProduct, String flowId); AjaxResponse<List<String>> submit(@PathVariable("product") String flowxProduct, String flowId);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment