IRC_NewDev
parent
0a30107859
commit
e1383445e2
|
@ -407,27 +407,55 @@ namespace IRaCIS.Core.Domain.Share
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum ValueUnit
|
public enum ValueUnit
|
||||||
{
|
{
|
||||||
None = 0,
|
/// <summary>
|
||||||
|
/// 无
|
||||||
|
/// </summary>
|
||||||
|
none = 0,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// MM
|
/// mm
|
||||||
/// </summary>
|
/// </summary>
|
||||||
MM = 1,
|
mm = 1,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// CM
|
/// cm
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CM = 2,
|
cm = 2,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 个
|
/// 个
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Individual = 3,
|
individual = 3,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 自定义
|
/// 自定义
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Custom = 4,
|
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,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2719,6 +2719,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
t.QuestionEnName,
|
t.QuestionEnName,
|
||||||
QuestionId = t.Id,
|
QuestionId = t.Id,
|
||||||
t.DictionaryCode,
|
t.DictionaryCode,
|
||||||
|
t.Unit,
|
||||||
t.ShowOrder,
|
t.ShowOrder,
|
||||||
AnswerType = t.Type,
|
AnswerType = t.Type,
|
||||||
}).OrderBy(t => t.ShowOrder).ToListAsync();
|
}).OrderBy(t => t.ShowOrder).ToListAsync();
|
||||||
|
@ -2755,6 +2756,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
t.ReadingQuestionTrial.CustomUnit,
|
t.ReadingQuestionTrial.CustomUnit,
|
||||||
t.DictionaryCode,
|
t.DictionaryCode,
|
||||||
t.QuestionName,
|
t.QuestionName,
|
||||||
|
t.Unit,
|
||||||
t.QuestionEnName,
|
t.QuestionEnName,
|
||||||
QuestionId = t.Id,
|
QuestionId = t.Id,
|
||||||
t.ShowOrder,
|
t.ShowOrder,
|
||||||
|
|
Loading…
Reference in New Issue