稽查修改
parent
5f7f5c0ccb
commit
8da1210b15
|
@ -208,7 +208,7 @@ namespace IRaCIS.Core.API.Controllers
|
|||
/// </summary>
|
||||
/// <param name="opt"></param>
|
||||
/// <returns></returns>
|
||||
[HttpPost, Route("Inspection/ReadingImageTask/SubmitVisitTaskQuestionsInDto")]
|
||||
[HttpPost, Route("Inspection/ReadingImageTask/SubmitVisitTaskQuestions")]
|
||||
[UnitOfWork]
|
||||
public async Task<IResponseOutput> SubmitVisitTaskQuestions(DataInspectionDto<SubmitVisitTaskQuestionsInDto> opt)
|
||||
{
|
||||
|
|
|
@ -185,10 +185,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public class GetReadingClinicalDataListIndto
|
||||
{
|
||||
[Required(ErrorMessage = "SubjectId为null")]
|
||||
[NotDefault]
|
||||
public Guid SubjectId { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "ReadingId为null")]
|
||||
[NotDefault]
|
||||
public Guid ReadingId { get; set; }
|
||||
|
||||
public UploadRole? UploadRole { get; set; }
|
||||
|
|
|
@ -1770,7 +1770,7 @@ namespace IRaCIS.Application.Services
|
|||
//var result = await this.SaveGlobalReadingInfo(inDto);
|
||||
|
||||
//await FinishReadUpdateState(inDto.OncologyTaskId);
|
||||
await _visitTaskRepository.BatchUpdateNoTrackingAsync(x => x.Id == inDto.OncologyTaskId, x => new VisitTask()
|
||||
await _visitTaskRepository.UpdatePartialFromQueryAsync( inDto.OncologyTaskId, x => new VisitTask()
|
||||
{
|
||||
ReadingTaskState = ReadingTaskState.HaveSigned,
|
||||
SignTime = DateTime.Now,
|
||||
|
|
|
@ -20,7 +20,7 @@ namespace IRaCIS.Core.Domain.Models
|
|||
public Guid TrialId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 阅片或者受试者ID
|
||||
/// 访视Id 或者模块Id
|
||||
/// </summary>
|
||||
public Guid ReadingId { get; set; }
|
||||
|
||||
|
|
|
@ -10,19 +10,19 @@ using System.ComponentModel.DataAnnotations.Schema;
|
|||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 阅片肿瘤学
|
||||
/// 阅片肿瘤学 针对访视任务 添加了一个结果
|
||||
/// </summary>
|
||||
[Table("ReadingOncologyTaskInfo")]
|
||||
public class ReadingOncologyTaskInfo : Entity, IAuditAdd
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 肿瘤学任务ID
|
||||
/// 肿瘤学 阅片任务ID
|
||||
/// </summary>
|
||||
public Guid OncologyTaskId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 访视任务Id
|
||||
/// 产生肿瘤学阅片任务的 访视类型的阅片任务Id
|
||||
/// </summary>
|
||||
public Guid VisitTaskId { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue