java110
2022-01-17 2e012cdc63f5b5c79328f1c15407b7fd0a5207cc
java110-interface/src/main/java/com/java110/intf/common/IContractApplyUserInnerServiceSMO.java
@@ -12,7 +12,7 @@
import java.util.List;
@FeignClient(name = "common-service", configuration = {FeignConfiguration.class})
@FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/contractApplyUserApi")
public interface IContractApplyUserInnerServiceSMO {
@@ -83,4 +83,12 @@
    @RequestMapping(value = "/getUserHistoryTasks", method = RequestMethod.POST)
    public List<ContractDto> getUserHistoryTasks(@RequestBody AuditUser user);
    /**
     * 处理任务
     * @return true 为流程结束 false 为流程没有结束
     */
    @RequestMapping(value = "/completeTask", method = RequestMethod.POST)
    public boolean completeTask(@RequestBody ContractDto contractDto);
}