|
@@ -0,0 +1,32 @@
|
|
|
|
|
+using Microsoft.EntityFrameworkCore;
|
|
|
|
|
+using System;
|
|
|
|
|
+using System.Collections.Generic;
|
|
|
|
|
+using System.Linq;
|
|
|
|
|
+using System.Linq.Dynamic.Core;
|
|
|
|
|
+using System.Threading.Tasks;
|
|
|
|
|
+using Volo.Abp.Application.Dtos;
|
|
|
|
|
+using Volo.Abp.Domain.Repositories;
|
|
|
|
|
+using Business.Models;
|
|
|
|
|
+using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
+using Business.Permissions;
|
|
|
|
|
+using XCZ;
|
|
|
|
|
+using Business.ResourceExamineManagement;
|
|
|
|
|
+using Business.ResourceExamineManagement.Dto;
|
|
|
|
|
+
|
|
|
|
|
+namespace Business.BookManagement
|
|
|
|
|
+{
|
|
|
|
|
+ [Authorize(BusinessPermissions.Book.Default)]
|
|
|
|
|
+ public class ResourceExamineAppService : IResourceExamineAppService
|
|
|
|
|
+ {
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 资源检查
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ /// <param name="input"></param>
|
|
|
|
|
+ /// <returns></returns>
|
|
|
|
|
+ /// <exception cref="NotImplementedException"></exception>
|
|
|
|
|
+ public Task<PschedDto> ReceiveResult(SeorderentryDto input)
|
|
|
|
|
+ {
|
|
|
|
|
+ throw new NotImplementedException();
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|