添加返回小数点位数
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
0a6f2e2011
commit
c0f7a921d6
|
@ -39,6 +39,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
.Select(x => new GetTrialClinicalQuestionCalculateRelationOutDto()
|
.Select(x => new GetTrialClinicalQuestionCalculateRelationOutDto()
|
||||||
{
|
{
|
||||||
QuestionId = x.Id,
|
QuestionId = x.Id,
|
||||||
|
DigitPlaces=x.DigitPlaces,
|
||||||
QuestionName = x.QuestionName,
|
QuestionName = x.QuestionName,
|
||||||
CustomCalculateMark = x.CustomCalculateMark,
|
CustomCalculateMark = x.CustomCalculateMark,
|
||||||
CalculateQuestionList = x.CalculateQuestionList,
|
CalculateQuestionList = x.CalculateQuestionList,
|
||||||
|
|
|
@ -22,6 +22,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
{
|
{
|
||||||
public Guid QuestionId { get; set; }
|
public Guid QuestionId { get; set; }
|
||||||
|
|
||||||
|
public int? DigitPlaces { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 问题名称
|
/// 问题名称
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue