wuxw
2022-07-19 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54
java110-interface/src/main/java/com/java110/intf/common/IPurchaseApplyUserInnerServiceSMO.java
@@ -4,6 +4,8 @@
import com.java110.dto.auditMessage.AuditMessageDto;
import com.java110.dto.purchaseApply.PurchaseApplyDto;
import com.java110.entity.audit.AuditUser;
import com.java110.po.contract.ContractPo;
import com.java110.po.purchase.PurchaseApplyPo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -11,7 +13,7 @@
import java.util.List;
@FeignClient(name = "common-service", configuration = {FeignConfiguration.class})
@FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/purchaseApplyUserApi")
public interface IPurchaseApplyUserInnerServiceSMO {
@@ -79,4 +81,11 @@
    @RequestMapping(value = "/getTaskCurrentUser", method = RequestMethod.POST)
    public PurchaseApplyDto getTaskCurrentUser(@RequestBody PurchaseApplyDto purchaseApplyDto);
    /**
     * 处理任务
     * @return true 为流程结束 false 为流程没有结束
     */
    @RequestMapping(value = "/deleteTask", method = RequestMethod.POST)
    public boolean deleteTask(@RequestBody PurchaseApplyPo purchaseApplyPo);
}