表单添加字段
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
e291953d09
commit
10c9f6b8cc
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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(),
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue