IRC_NewDev
he 2024-04-08 14:45:39 +08:00
parent 0a30107859
commit e1383445e2
2 changed files with 58 additions and 28 deletions

View File

@ -407,27 +407,55 @@ namespace IRaCIS.Core.Domain.Share
/// </summary>
public enum ValueUnit
{
None = 0,
/// <summary>
/// 无
/// </summary>
none = 0,
/// <summary>
/// MM
/// mm
/// </summary>
MM = 1,
mm = 1,
/// <summary>
/// CM
/// cm
/// </summary>
CM = 2,
cm = 2,
/// <summary>
/// 个
/// </summary>
Individual = 3,
individual = 3,
/// <summary>
/// 自定义
/// </summary>
Custom = 4,
/// <summary>
/// mm2
/// </summary>
mm2 = 5,
/// <summary>
/// mm3
/// </summary>
mm3 = 6,
/// <summary>
/// SUV
/// </summary>
SUV = 7,
/// <summary>
/// HU
/// </summary>
HU = 8,
/// <summary>
/// %
/// </summary>
percentage = 9,
}

View File

@ -2719,6 +2719,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
t.QuestionEnName,
QuestionId = t.Id,
t.DictionaryCode,
t.Unit,
t.ShowOrder,
AnswerType = t.Type,
}).OrderBy(t => t.ShowOrder).ToListAsync();
@ -2755,6 +2756,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
t.ReadingQuestionTrial.CustomUnit,
t.DictionaryCode,
t.QuestionName,
t.Unit,
t.QuestionEnName,
QuestionId = t.Id,
t.ShowOrder,