表单添加字段
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
cbd1457699
commit
80706c407d
|
|
@ -2510,6 +2510,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public ValueUnit? Unit { get; set; }
|
public ValueUnit? Unit { get; set; }
|
||||||
public string? CustomUnit { get; set; }
|
public string? CustomUnit { get; set; }
|
||||||
public ValueOfType? ValueType { 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;
|
public JudgeReadingQuestionType QuestionType { get; set; } = JudgeReadingQuestionType.Question;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -197,6 +197,11 @@ namespace IRaCIS.Core.Application.Service
|
||||||
Unit = x.Unit,
|
Unit = x.Unit,
|
||||||
CustomUnit = x.CustomUnit,
|
CustomUnit = x.CustomUnit,
|
||||||
ValueType = x.ValueType,
|
ValueType = x.ValueType,
|
||||||
|
|
||||||
|
|
||||||
|
ClassifyQuestionId = x.ClassifyQuestionId,
|
||||||
|
ClassifyAlgorithms = x.ClassifyAlgorithms,
|
||||||
|
ClassifyType = x.ClassifyType
|
||||||
}).ToList(),
|
}).ToList(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue