添加 数值类型和单位

This commit is contained in:
he
2022-10-08 16:23:08 +08:00
parent efc595c615
commit 4c831b146f
6 changed files with 120 additions and 0 deletions
@@ -116,6 +116,15 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class ReadingTableQuestionTrialAddOrEdit
{
/// <summary>
/// 数值类型
/// </summary>
public ValueOfType? ValueType { get; set; }
/// <summary>
/// 单位
/// </summary>
public string Unit { get; set; } = string.Empty;
public Guid? Id { get; set; }
@@ -168,6 +177,15 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
///<summary> ReadingTableQuestionSystemAddOrEdit 列表查询参数模型</summary>
public class ReadingTableQuestionSystemAddOrEdit
{
/// <summary>
/// 数值类型
/// </summary>
public ValueOfType? ValueType { get; set; }
/// <summary>
/// 单位
/// </summary>
public string Unit { get; set; } = string.Empty;
public Guid? Id { get; set; }
public Guid ReadingQuestionId { get; set; }
public string Type { get; set; } = string.Empty;
@@ -598,10 +616,30 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 序号标记
/// </summary>
public string OrderMark { get; set; } = string.Empty;
/// <summary>
/// 数值类型
/// </summary>
public ValueOfType? ValueType { get; set; }
/// <summary>
/// 单位
/// </summary>
public string Unit { get; set; } = string.Empty;
}
public class ReadingQuestionSystemView
{
/// <summary>
/// 数值类型
/// </summary>
public ValueOfType? ValueType { get; set; }
/// <summary>
/// 单位
/// </summary>
public string Unit { get; set; } = string.Empty;
/// <summary>
/// Id
/// </summary>
@@ -920,6 +958,15 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
}
public class AddOrUpdateReadingQuestionSystemInDto
{
/// <summary>
/// 数值类型
/// </summary>
public ValueOfType? ValueType { get; set; }
/// <summary>
/// 单位
/// </summary>
public string Unit { get; set; } = string.Empty;
/// <summary>
/// 分组
@@ -1182,6 +1229,17 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 序号标记
/// </summary>
public string OrderMark { get; set; } = string.Empty;
/// <summary>
/// 数值类型
/// </summary>
public ValueOfType? ValueType { get; set; }
/// <summary>
/// 单位
/// </summary>
public string Unit { get; set; } = string.Empty;
}
public class GetSystemCriterionSelectDto