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