|
@@ -2,6 +2,7 @@ package org.springblade.business.feign;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
+import io.swagger.models.auth.In;
|
|
import org.springblade.business.entity.Task;
|
|
import org.springblade.business.entity.Task;
|
|
import org.springblade.business.entity.TaskParallel;
|
|
import org.springblade.business.entity.TaskParallel;
|
|
import org.springblade.business.vo.TaskApprovalVO;
|
|
import org.springblade.business.vo.TaskApprovalVO;
|
|
@@ -9,10 +10,7 @@ import org.springblade.business.vo.TaskVO;
|
|
import org.springblade.common.constant.BusinessConstant;
|
|
import org.springblade.common.constant.BusinessConstant;
|
|
import org.springblade.core.tool.api.R;
|
|
import org.springblade.core.tool.api.R;
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.io.FileNotFoundException;
|
|
import java.io.FileNotFoundException;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
@@ -165,7 +163,7 @@ public interface TaskClient {
|
|
void saveFixedFlowLink(@RequestParam Long fixedFlowId, @RequestParam String name, @RequestParam Integer type,
|
|
void saveFixedFlowLink(@RequestParam Long fixedFlowId, @RequestParam String name, @RequestParam Integer type,
|
|
@RequestParam String userIds, @RequestParam Long projectId,
|
|
@RequestParam String userIds, @RequestParam Long projectId,
|
|
@RequestParam Long contractId, @RequestParam Integer linkSort,
|
|
@RequestParam Long contractId, @RequestParam Integer linkSort,
|
|
- @RequestParam Integer userSort);
|
|
|
|
|
|
+ @RequestParam Integer userSort,@RequestParam Integer flowTaskType);
|
|
|
|
|
|
@PostMapping(value = "/updateFixedFlow")
|
|
@PostMapping(value = "/updateFixedFlow")
|
|
boolean updateFixedFlow(@RequestParam Long fixedFlowId, @RequestParam String fixedName);
|
|
boolean updateFixedFlow(@RequestParam Long fixedFlowId, @RequestParam String fixedName);
|
|
@@ -174,7 +172,8 @@ public interface TaskClient {
|
|
void updateFixedFlowLink(@RequestParam Long fixedFlowId, @RequestParam String name,
|
|
void updateFixedFlowLink(@RequestParam Long fixedFlowId, @RequestParam String name,
|
|
@RequestParam Integer type,@RequestParam String userIds,
|
|
@RequestParam Integer type,@RequestParam String userIds,
|
|
@RequestParam Long projectId, @RequestParam Long contractId,
|
|
@RequestParam Long projectId, @RequestParam Long contractId,
|
|
- @RequestParam Integer linkSort,@RequestParam Integer userSort);
|
|
|
|
|
|
+ @RequestParam Integer linkSort,@RequestParam Integer userSort,
|
|
|
|
+ @RequestParam Integer flowTaskType);
|
|
@PostMapping(value = "/getFixedFlowPage")
|
|
@PostMapping(value = "/getFixedFlowPage")
|
|
List<Map<String, Object>> getFixedFlowPage(@RequestBody org.springblade.meter.dto.PageFixedFlowDTO dto);
|
|
List<Map<String, Object>> getFixedFlowPage(@RequestBody org.springblade.meter.dto.PageFixedFlowDTO dto);
|
|
|
|
|