Uat_Study
parent
455d46a3ca
commit
0fdfce06cd
|
@ -1790,6 +1790,11 @@
|
||||||
分组
|
分组
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.AnswerGroup">
|
||||||
|
<summary>
|
||||||
|
答案分组
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.Type">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.Type">
|
||||||
<summary>
|
<summary>
|
||||||
类型
|
类型
|
||||||
|
@ -4204,6 +4209,12 @@
|
||||||
<param name="VisitTaskId"></param>
|
<param name="VisitTaskId"></param>
|
||||||
<returns></returns>
|
<returns></returns>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:IRaCIS.Application.Services.ReadingImageTaskService.SaveJudgeTask">
|
||||||
|
<summary>
|
||||||
|
添加裁判任务
|
||||||
|
</summary>
|
||||||
|
<returns></returns>
|
||||||
|
</member>
|
||||||
<member name="T:IRaCIS.Application.Services.ReadingPeriodSetService">
|
<member name="T:IRaCIS.Application.Services.ReadingPeriodSetService">
|
||||||
<summary>
|
<summary>
|
||||||
阅片期配置
|
阅片期配置
|
||||||
|
|
|
@ -112,6 +112,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public List<QuestionAnswer> AnswerList { get; set; } = new List<QuestionAnswer>();
|
public List<QuestionAnswer> AnswerList { get; set; } = new List<QuestionAnswer>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class SaveJudgeTaskDto
|
||||||
|
{
|
||||||
|
public List<Guid> VisitTaskIds { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
public class QuestionAnswer
|
public class QuestionAnswer
|
||||||
{
|
{
|
||||||
|
|
|
@ -167,7 +167,7 @@ namespace IRaCIS.Application.Services
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public async Task<List<GetTrialCriterionJudgeQuestionListOutDto>> GetTrialCriterionJudgeQuestionList(GetTrialCriterionJudgeQuestionListInDto inDto)
|
public async Task<List<GetTrialCriterionJudgeQuestionListOutDto>> GetTrialCriterionJudgeQuestionList(GetTrialCriterionJudgeQuestionListInDto inDto)
|
||||||
{
|
{
|
||||||
var result = await _readingQuestionTrialRepository.Where(x => x.Id == inDto.ReadingQuestionCriterionTrialId && x.IsJudgeQuestion)
|
var result = await _readingQuestionTrialRepository.Where(x => x.ReadingQuestionCriterionTrialId == inDto.ReadingQuestionCriterionTrialId && x.IsJudgeQuestion)
|
||||||
.Select(x => new GetTrialCriterionJudgeQuestionListOutDto()
|
.Select(x => new GetTrialCriterionJudgeQuestionListOutDto()
|
||||||
{
|
{
|
||||||
AnswerGroup = x.AnswerGroup,
|
AnswerGroup = x.AnswerGroup,
|
||||||
|
|
Loading…
Reference in New Issue