| | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.workflow.WorkflowAuditInfoDto; |
| | | import com.java110.dto.workflow.WorkflowDto; |
| | | import com.java110.dto.workflow.WorkflowModelDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "common-service", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/workflowApi") |
| | | public interface IWorkflowInnerServiceSMO { |
| | | |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryWorkflowAuditHistory", method = RequestMethod.POST) |
| | | List<WorkflowAuditInfoDto> queryWorkflowAuditHistory(@RequestBody WorkflowAuditInfoDto workflowAuditInfoDto); |
| | | |
| | | /** |
| | | * 创建模型 |
| | | * @param workflowModelDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/createModel", method = RequestMethod.POST) |
| | | WorkflowModelDto createModel(@RequestBody WorkflowModelDto workflowModelDto); |
| | | |
| | | |
| | | } |