diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index 6f4b5ac4d..4808ae7f5 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -3165,6 +3165,11 @@ + + + 阅片计算 + + 阅片医学审核 @@ -4064,6 +4069,11 @@ IOrganInfoService + + + IReadingCalculateService + + ITrialExternalUserService diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingCalculateViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingCalculateViewModel.cs new file mode 100644 index 000000000..f1d63b2c3 --- /dev/null +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingCalculateViewModel.cs @@ -0,0 +1,14 @@ +//-------------------------------------------------------------------- +// 此代码由T4模板自动生成 byzhouhang 20210918 +// 生成时间 2022-08-22 09:36:37 +// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 +//-------------------------------------------------------------------- +using System; +using IRaCIS.Core.Domain.Share; +using System.Collections.Generic; +namespace IRaCIS.Core.Application.ViewModel +{ + +} + + diff --git a/IRaCIS.Core.Application/Service/Reading/Interface/IReadingCalculateService.cs b/IRaCIS.Core.Application/Service/Reading/Interface/IReadingCalculateService.cs new file mode 100644 index 000000000..a9244017a --- /dev/null +++ b/IRaCIS.Core.Application/Service/Reading/Interface/IReadingCalculateService.cs @@ -0,0 +1,21 @@ +//-------------------------------------------------------------------- +// 此代码由T4模板自动生成 byzhouhang 20210918 +// 生成时间 2022-08-22 09:33:28 +// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 +//-------------------------------------------------------------------- + +using IRaCIS.Core.Application.ViewModel; +namespace IRaCIS.Core.Application.Interfaces +{ + /// + /// IReadingCalculateService + /// + public interface IReadingCalculateService + { + + + + + + } +} diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingCalculateService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingCalculateService.cs new file mode 100644 index 000000000..7e5304db6 --- /dev/null +++ b/IRaCIS.Core.Application/Service/Reading/ReadingCalculateService.cs @@ -0,0 +1,31 @@ +//-------------------------------------------------------------------- +// 此代码由T4模板自动生成 byzhouhang 20210918 +// 生成时间 2022-08-22 09:33:24 +// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 +//-------------------------------------------------------------------- + +using IRaCIS.Core.Domain.Models; +using Microsoft.AspNetCore.Mvc; +using IRaCIS.Core.Application.Interfaces; +using IRaCIS.Core.Application.ViewModel; +using Panda.DynamicWebApi.Attributes; + +namespace IRaCIS.Core.Application.Service +{ + /// + /// 阅片计算 + /// + [NonDynamicWebApi] + [ ApiExplorerSettings(GroupName = "Reading")] + public class ReadingCalculateService : BaseService, IReadingCalculateService + { + + private readonly IRepository _readingTableQuestionAnswerRepository; + + public ReadingCalculateService(IRepository readingTableQuestionAnswerRepository) + { + _readingTableQuestionAnswerRepository = readingTableQuestionAnswerRepository; + } + + } +} diff --git a/IRaCIS.Core.Test/IRaCIS.Core.Test.csproj b/IRaCIS.Core.Test/IRaCIS.Core.Test.csproj index 5f49abc87..af84782b3 100644 --- a/IRaCIS.Core.Test/IRaCIS.Core.Test.csproj +++ b/IRaCIS.Core.Test/IRaCIS.Core.Test.csproj @@ -109,7 +109,6 @@ -