修改
This commit is contained in:
@@ -203,6 +203,11 @@
|
||||
配置加急信息
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.Service.Inspection.DTO.ReadingClinicalDataSignIndto.ReadingClinicalDataId">
|
||||
<summary>
|
||||
阅片临床数据ID
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:IRaCIS.Core.Application.Service.Inspection.DTO.DataInspectionDto`1">
|
||||
<summary>
|
||||
稽查泛型Dto
|
||||
@@ -3652,6 +3657,11 @@
|
||||
<param name="inDto"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Application.Services.ReadingClinicalDataService.ReadClinicalDataSign(IRaCIS.Core.Application.Service.Inspection.DTO.ReadingClinicalDataSignIndto)">
|
||||
<summary>
|
||||
设置影像阅片签名
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Application.Services.ReadingClinicalDataService.GetReadingClinicalDataList(IRaCIS.Core.Application.Service.Reading.Dto.GetReadingClinicalDataListIndto)">
|
||||
<summary>
|
||||
获取阅片临床数据列表
|
||||
|
||||
@@ -266,6 +266,14 @@ namespace IRaCIS.Core.Application.Service.Inspection.DTO
|
||||
public bool obtaionOrCancel { get; set; }
|
||||
}
|
||||
|
||||
public class ReadingClinicalDataSignIndto
|
||||
{
|
||||
/// <summary>
|
||||
/// 阅片临床数据ID
|
||||
/// </summary>
|
||||
public Guid ReadingClinicalDataId { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 稽查泛型Dto
|
||||
/// </summary>
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
|
||||
using IRaCIS.Core.Application.Service.Inspection.DTO;
|
||||
using IRaCIS.Core.Application.Service.Reading.Dto;
|
||||
using IRaCIS.Core.Domain.Share.Reading;
|
||||
|
||||
@@ -13,5 +14,7 @@ namespace IRaCIS.Core.Application.Contracts
|
||||
public interface IReadingClinicalDataService
|
||||
{
|
||||
Task<IResponseOutput> AddOrUpdateReadingClinicalData(AddOrUpdateReadingClinicalDataDto indto);
|
||||
|
||||
Task<IResponseOutput> ReadClinicalDataSign(ReadingClinicalDataSignIndto inDto);
|
||||
}
|
||||
}
|
||||
@@ -13,6 +13,8 @@ using System.ComponentModel.DataAnnotations;
|
||||
using System.Reflection;
|
||||
using IRaCIS.Core.Infra.EFCore.Common;
|
||||
using IRaCIS.Core.Application.Contracts;
|
||||
using IRaCIS.Core.Application.Service.Inspection.DTO;
|
||||
using Panda.DynamicWebApi.Attributes;
|
||||
|
||||
namespace IRaCIS.Application.Services
|
||||
{
|
||||
@@ -150,7 +152,24 @@ namespace IRaCIS.Application.Services
|
||||
return clinicalList;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 影像阅片临床数据签名
|
||||
/// </summary>
|
||||
// [HttpPost]
|
||||
[NonDynamicMethod]
|
||||
public async Task<IResponseOutput> ReadClinicalDataSign(ReadingClinicalDataSignIndto inDto)
|
||||
{
|
||||
await _readingClinicalDataRepository.UpdatePartialFromQueryAsync(x => x.Id == inDto.ReadingClinicalDataId, x => new ReadingClinicalData()
|
||||
{
|
||||
IsSign = true
|
||||
});
|
||||
|
||||
var result =await _readingClinicalDataRepository.SaveChangesAsync();
|
||||
|
||||
return ResponseOutput.Result(result);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取阅片临床数据列表
|
||||
|
||||
Reference in New Issue
Block a user