Uat_Study
parent
9e719f5158
commit
fc6154a04c
|
@ -34,6 +34,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// 表格问题类型
|
/// 表格问题类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public TableQuestionType TableQuestionType { get; set; }
|
public TableQuestionType TableQuestionType { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 依赖父问题
|
||||||
|
/// </summary>
|
||||||
|
public Guid? DependParentId { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -77,6 +83,14 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// 表格问题类型
|
/// 表格问题类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public TableQuestionType TableQuestionType { get; set; }
|
public TableQuestionType TableQuestionType { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 依赖父问题
|
||||||
|
/// </summary>
|
||||||
|
public Guid? DependParentId { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class ReadingCriterionPageView
|
public class ReadingCriterionPageView
|
||||||
|
|
|
@ -129,7 +129,6 @@ namespace IRaCIS.Core.Application.Service
|
||||||
Part = data.Part,
|
Part = data.Part,
|
||||||
TULAT = data.TULAT,
|
TULAT = data.TULAT,
|
||||||
TULOC = data.TULOC,
|
TULOC = data.TULOC,
|
||||||
|
|
||||||
Remark= data.Remark,
|
Remark= data.Remark,
|
||||||
OrganType=data.OrganType,
|
OrganType=data.OrganType,
|
||||||
};
|
};
|
||||||
|
|
|
@ -106,6 +106,12 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string DataTableColumn { get; set; }
|
public string DataTableColumn { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 依赖父问题
|
||||||
|
/// </summary>
|
||||||
|
public Guid? DependParentId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 表格问题类型
|
/// 表格问题类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue