package com.java110.intf.common; import com.java110.config.feign.FeignConfiguration; import com.java110.dto.contractChangePlan.ContractChangePlanDto; import com.java110.entity.audit.AuditUser; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import java.util.List; @FeignClient(name = "common-service", configuration = {FeignConfiguration.class}) @RequestMapping("/contractChangeUserApi") public interface IContractChangeUserInnerServiceSMO { /** *

启动流程

* * @return CommunityDto 对象数据 */ @RequestMapping(value = "/startProcess", method = RequestMethod.POST) public ContractChangePlanDto startProcess(@RequestBody ContractChangePlanDto contractChangePlanDto); /** * 查询用户任务数 * * @param user * @return */ @RequestMapping(value = "/getUserTaskCount", method = RequestMethod.POST) public long getUserTaskCount(@RequestBody AuditUser user); /** * 获取用户任务 * * @param user 用户信息 */ @RequestMapping(value = "/getUserTasks", method = RequestMethod.POST) public List getUserTasks(@RequestBody AuditUser user); /** * 同意 * * @param contractChangePlanDto * @return */ @RequestMapping(value = "/agreeCompleteTask", method = RequestMethod.POST) public boolean agreeCompleteTask(@RequestBody ContractChangePlanDto contractChangePlanDto); /** * 反驳 * * @param contractChangePlanDto * @return */ @RequestMapping(value = "/refuteCompleteTask", method = RequestMethod.POST) public boolean refuteCompleteTask(@RequestBody ContractChangePlanDto contractChangePlanDto); /** * 完成任务 * * @param contractChangePlanDto */ @RequestMapping(value = "/complete", method = RequestMethod.GET) public boolean complete(@RequestBody ContractChangePlanDto contractChangePlanDto); /** * 查询用户任务数 * * @param user * @return */ @RequestMapping(value = "/getUserHistoryTaskCount", method = RequestMethod.POST) public long getUserHistoryTaskCount(@RequestBody AuditUser user); /** * 获取用户审批的任务 * * @param user 用户信息 */ @RequestMapping(value = "/getUserHistoryTasks", method = RequestMethod.POST) public List getUserHistoryTasks(@RequestBody AuditUser user); }