修改一版
parent
6b00653569
commit
bb181075a5
|
@ -1734,6 +1734,11 @@
|
||||||
类型值
|
类型值
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.SetTrialQuestionIsIsJudgeQuestionInDto.IsJudgeQuestion">
|
||||||
|
<summary>
|
||||||
|
是否是裁判问题
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetTrialCriterionOtherQuestionInDto.Id">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetTrialCriterionOtherQuestionInDto.Id">
|
||||||
<summary>
|
<summary>
|
||||||
当前ID
|
当前ID
|
||||||
|
|
|
@ -226,6 +226,18 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string TypeValue { get; set; }
|
public string TypeValue { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class SetTrialQuestionIsIsJudgeQuestionInDto
|
||||||
|
{
|
||||||
|
[NotDefault]
|
||||||
|
public Guid Id { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 是否是裁判问题
|
||||||
|
/// </summary>
|
||||||
|
public bool IsJudgeQuestion { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
public class GetTrialCriterionOtherQuestionInDto
|
public class GetTrialCriterionOtherQuestionInDto
|
||||||
{
|
{
|
||||||
[NotDefault]
|
[NotDefault]
|
||||||
|
|
|
@ -375,8 +375,6 @@ namespace IRaCIS.Application.Services
|
||||||
return ResponseOutput.Result(success);
|
return ResponseOutput.Result(success);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 新增修改项目问题(项目)
|
/// 新增修改项目问题(项目)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -405,8 +403,6 @@ namespace IRaCIS.Application.Services
|
||||||
inDto.Asc);
|
inDto.Asc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 获取项目标准的其他问题(项目)
|
/// 获取项目标准的其他问题(项目)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -432,6 +428,22 @@ namespace IRaCIS.Application.Services
|
||||||
return questionList;
|
return questionList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///// <summary>
|
||||||
|
///// 设置问题为裁判问题
|
||||||
|
///// </summary>
|
||||||
|
///// <returns></returns>
|
||||||
|
//public async Task<IResponseOutput> SetTrialQuestionIsIsJudgeQuestion(SetTrialQuestionIsIsJudgeQuestionInDto inDto)
|
||||||
|
//{
|
||||||
|
// var trialCriterionId = (await _readingQuestionTrialRepository.FirstOrDefaultAsync(x => x.Id == inDto.Id)).IfNullThrowException();
|
||||||
|
|
||||||
|
// if (inDto.IsJudgeQuestion)
|
||||||
|
// {
|
||||||
|
// if()
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
//}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 删除项目问题(项目)
|
/// 删除项目问题(项目)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -40,9 +40,12 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid CreateUserId { get; set; }
|
public Guid CreateUserId { get; set; }
|
||||||
|
|
||||||
|
[ForeignKey("CriterionId")]
|
||||||
public List<ReadingQuestionSystem> ReadingQuestionSystemList { get; set; } = new List<ReadingQuestionSystem>();
|
public List<ReadingQuestionSystem> ReadingQuestionSystemList { get; set; } = new List<ReadingQuestionSystem>();
|
||||||
|
|
||||||
|
|
||||||
|
public Dictionary Dictionary { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -63,6 +63,11 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
public bool IsEnable { get; set; }
|
public bool IsEnable { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 是否是裁判问题
|
||||||
|
/// </summary>
|
||||||
|
public bool IsJudgeQuestion { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 创建时间
|
/// 创建时间
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue