表单添加字段
continuous-integration/drone/push Build is passing Details

Uat_IRC_Net10
he 2026-08-18 14:24:54 +08:00
parent e291953d09
commit 10c9f6b8cc
2 changed files with 12 additions and 0 deletions

View File

@ -2510,6 +2510,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public ValueUnit? Unit { get; set; }
public string? CustomUnit { get; set; }
public ValueOfType? ValueType { get; set; }
public string ClassifyAlgorithms { get; set; }
public ClassifyType? ClassifyType { get; set; }
public Guid? ClassifyQuestionId { get; set; }
public JudgeReadingQuestionType QuestionType { get; set; } = JudgeReadingQuestionType.Question;
}

View File

@ -197,6 +197,11 @@ namespace IRaCIS.Core.Application.Service
Unit = x.Unit,
CustomUnit = x.CustomUnit,
ValueType = x.ValueType,
ClassifyQuestionId = x.ClassifyQuestionId,
ClassifyAlgorithms = x.ClassifyAlgorithms,
ClassifyType = x.ClassifyType
}).ToList(),
};
}