修改一版

Uat_Study
he 2022-07-04 13:51:29 +08:00
parent 053ce2e690
commit d1dce01875
2 changed files with 25 additions and 1 deletions

View File

@ -10,6 +10,22 @@ using System.Threading.Tasks;
namespace IRaCIS.Core.Application.Service.Reading.Dto
{
public class SaveMedicineQuestionInDto
{
public Guid TaskMedicalReviewId { get; set; }
public Guid VisitTaskId { get; set; }
public List<QuestionAnswer> QuestionAnswerList { get; set; }
}
public class QuestionAnswer
{
public Guid MedicineQuestionId { get; set; }
public string Answer { get; set; }
}
public class GetMedicalReviewReadingTaskInDto
{
public Guid TrialId { get; set; }

View File

@ -191,8 +191,16 @@ namespace IRaCIS.Core.Application.Service
}
}
///// <summary>
///// 保存医学审核问题
///// </summary>
///// <returns></returns>
//[HttpPost]
//public async Task<IResponseOutput> SaveMedicineQuestion(SaveMedicineQuestionInDto inDto)
//{
// await _readingMedicineQuestionAnswerRepository.BatchDeleteNoTrackingAsync(x => x.TaskMedicalReviewId == inDto.TaskMedicalReviewId);
//public async Task<IResponseOutput> SaveMedicineQuestion
//}
}
}