放开获取系统标准下拉框接口授权
continuous-integration/drone/push Build is passing Details

Test_HIR_Net8
hang 2026-03-24 09:54:16 +08:00
parent 8c6b73c236
commit 56e109ce0a
1 changed files with 1 additions and 0 deletions

View File

@ -262,6 +262,7 @@ namespace IRaCIS.Application.Services
/// </summary>
/// <param name="_readingQuestionCriterionSystemRepository"></param>
/// <returns></returns>
[AllowAnonymous]
public async Task<IResponseOutput> GetSystemConfirmedCreiterionList([FromServices] IRepository<ReadingQuestionCriterionSystem> _readingQuestionCriterionSystemRepository)
{
var list = await _readingQuestionCriterionSystemRepository.Where(x => x.IsEnable && x.IsCompleteConfig).OrderBy(t => t.ShowOrder).Select(t => new { t.CriterionType, t.CriterionName, t.Id, t.Description }).ToListAsync();