添加返回小数点位数
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
he 2025-06-25 10:41:01 +08:00
parent 0a6f2e2011
commit c0f7a921d6
2 changed files with 3 additions and 0 deletions

View File

@ -39,6 +39,7 @@ namespace IRaCIS.Core.Application.Service
.Select(x => new GetTrialClinicalQuestionCalculateRelationOutDto()
{
QuestionId = x.Id,
DigitPlaces=x.DigitPlaces,
QuestionName = x.QuestionName,
CustomCalculateMark = x.CustomCalculateMark,
CalculateQuestionList = x.CalculateQuestionList,

View File

@ -22,6 +22,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
{
public Guid QuestionId { get; set; }
public int? DigitPlaces { get; set; }
/// <summary>
/// 问题名称
/// </summary>