java110
2023-04-04 af551e9df1e59ef94f57007e1f4e8960ba2f8778
java110-interface/src/main/java/com/java110/intf/common/IResourceEntryStoreInnerServiceSMO.java
old mode 100644 new mode 100755
@@ -11,7 +11,7 @@
import java.util.List;
@FeignClient(name = "common-service", configuration = {FeignConfiguration.class})
@FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/commonApi")
public interface IResourceEntryStoreInnerServiceSMO {
@@ -64,4 +64,21 @@
     */
    @RequestMapping(value = "/complete", method = RequestMethod.GET)
    public boolean complete(@RequestBody ResourceOrderDto resourceOrderDto);
    /**
     * 查询用户任务数
     *
     * @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<PurchaseApplyDto> getUserHistoryTasks(@RequestBody AuditUser user);
}