颓废太子
2021-11-24 4689659b197a13cce2a492bed6c752a39164e1c0
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);
}