Uat_Study
he 2022-09-16 13:32:13 +08:00
parent a503868a25
commit d8b646410b
3 changed files with 23 additions and 2 deletions

View File

@ -373,6 +373,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 是否完成配置 /// 是否完成配置
/// </summary> /// </summary>
public bool IsCompleteConfig { get; set; } = false; public bool IsCompleteConfig { get; set; } = false;
/// <summary>
/// 标准英文
/// </summary>
public string CriterionEName { get; set; }
} }
/// <summary> /// <summary>
@ -1115,6 +1120,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 标准 /// 标准
/// </summary> /// </summary>
public string CriterionName { get; set; } public string CriterionName { get; set; }
/// <summary>
/// 标准英文
/// </summary>
public string CriterionEName { get; set; }
} }
public class ReadingQuestionCriterionSystemView public class ReadingQuestionCriterionSystemView
@ -1148,6 +1158,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public int QuestionCount { get; set; } public int QuestionCount { get; set; }
/// <summary>
/// 标准英文
/// </summary>
public string CriterionEName { get; set; }
public bool IsBeUsed { get; set; } = false; public bool IsBeUsed { get; set; } = false;
} }

View File

@ -664,7 +664,7 @@ namespace IRaCIS.Application.Services
//[HttpPost] //[HttpPost]
//public async Task<IResponseOutput> AddOrUpdateReadingQuestionCriterionSystem(AddOrUpdateReadingQuestionCriterionSystemInDto indto) //public async Task<IResponseOutput> AddOrUpdateReadingQuestionCriterionSystem(AddOrUpdateReadingQuestionCriterionSystemInDto indto)
//{ //{
// var entity = await _readingQuestionCriterionSystemRepository.InsertOrUpdateAsync(indto,true); // var entity = await _readingQuestionCriterionSystemRepository.InsertOrUpdateAsync(indto, true);
// return ResponseOutput.Ok(entity.Id.ToString()); // return ResponseOutput.Ok(entity.Id.ToString());
//} //}
@ -697,7 +697,8 @@ namespace IRaCIS.Application.Services
.Select(x => new GetSystemCriterionSelectDto() .Select(x => new GetSystemCriterionSelectDto()
{ {
Id = x.Id, Id = x.Id,
CriterionName = x.CriterionName CriterionName = x.CriterionName,
CriterionEName=x.CriterionEName,
}).ToListAsync(); }).ToListAsync();
return criterionList; return criterionList;
} }

View File

@ -44,6 +44,11 @@ namespace IRaCIS.Core.Domain.Models
/// </summary> /// </summary>
public DateTime ConfirmTime { get; set; } public DateTime ConfirmTime { get; set; }
/// <summary>
/// 标准英文
/// </summary>
public string CriterionEName { get; set; } = string.Empty;
/// <summary> /// <summary>
/// 创建人 /// 创建人
/// </summary> /// </summary>