Uat_Study
parent
5360c577af
commit
8205f33ec6
|
@ -93,6 +93,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// 是否是检查日期
|
/// 是否是检查日期
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsCheckDate { get; set; }
|
public bool IsCheckDate { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 小数点位数
|
||||||
|
/// </summary>
|
||||||
|
public int? DigitPlaces { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 单位
|
||||||
|
/// </summary>
|
||||||
|
public string Unit { get; set; } = string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -107,6 +107,15 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsCheckDate { get; set; }
|
public bool IsCheckDate { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 小数点位数
|
||||||
|
/// </summary>
|
||||||
|
public int? DigitPlaces { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 单位
|
||||||
|
/// </summary>
|
||||||
|
public string Unit { get; set; } = string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -84,8 +84,18 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// 外层问题Id
|
/// 外层问题Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid QuestionId { get; set; }
|
public Guid QuestionId { get; set; }
|
||||||
|
|
||||||
}
|
/// <summary>
|
||||||
|
/// 小数点位数
|
||||||
|
/// </summary>
|
||||||
|
public int? DigitPlaces { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 单位
|
||||||
|
/// </summary>
|
||||||
|
public string Unit { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -121,6 +121,16 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// 自定义计算问题
|
/// 自定义计算问题
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string CalculateQuestions { get; set; } = "[]";
|
public string CalculateQuestions { get; set; } = "[]";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 小数点位数
|
||||||
|
/// </summary>
|
||||||
|
public int? DigitPlaces { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 单位
|
||||||
|
/// </summary>
|
||||||
|
public string Unit { get; set; } = string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -100,6 +100,16 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string CalculateQuestions { get; set; } = "[]";
|
public string CalculateQuestions { get; set; } = "[]";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 小数点位数
|
||||||
|
/// </summary>
|
||||||
|
public int? DigitPlaces { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 单位
|
||||||
|
/// </summary>
|
||||||
|
public string Unit { get; set; } = string.Empty;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue