修改一版
parent
adafe4d9a2
commit
dbf69d42ee
|
@ -123,6 +123,14 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public Guid ReadingQuestionCriterionTrialId { get; set; }
|
public Guid ReadingQuestionCriterionTrialId { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public class GetJudgeReadingInfoOutDto
|
||||||
|
{
|
||||||
|
public Guid? JudgeResultTaskId { get; set; }
|
||||||
|
|
||||||
|
//public List
|
||||||
|
}
|
||||||
|
|
||||||
public class GetTrialReadingQuestionInDto
|
public class GetTrialReadingQuestionInDto
|
||||||
{
|
{
|
||||||
[NotDefault]
|
[NotDefault]
|
||||||
|
|
|
@ -224,7 +224,7 @@ namespace IRaCIS.Application.Services
|
||||||
{
|
{
|
||||||
await _readingQuestionTrialRepository.UpdatePartialFromQueryAsync(inDto.ReadingQuestionTrialId, x => new ReadingQuestionTrial()
|
await _readingQuestionTrialRepository.UpdatePartialFromQueryAsync(inDto.ReadingQuestionTrialId, x => new ReadingQuestionTrial()
|
||||||
{
|
{
|
||||||
AnswerGroup = JsonConvert.SerializeObject(inDto.AnswerCombination),
|
AnswerGroup = JsonConvert.SerializeObject(inDto.AnswerGroup),
|
||||||
AnswerCombination = JsonConvert.SerializeObject(inDto.AnswerCombination),
|
AnswerCombination = JsonConvert.SerializeObject(inDto.AnswerCombination),
|
||||||
JudgeType= inDto.JudgeType,
|
JudgeType= inDto.JudgeType,
|
||||||
}) ;
|
}) ;
|
||||||
|
@ -275,6 +275,14 @@ namespace IRaCIS.Application.Services
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 获取裁判阅片任务信息
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public async Task GetJudgeReadingInfo()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 找子问题
|
/// 找子问题
|
||||||
|
|
Loading…
Reference in New Issue