diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs index 1bec82852..1ce95f5ef 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs @@ -26,7 +26,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public Guid? RelevanceId { get; set; } public string RelevanceValue { get; set; } public int ShowQuestion { get; set; } - public int? MaxQuestionCount { get; set; } + public int MaxRowCount { get; set; } public string DataTableName { get; set; } public string DataTableColumn { get; set; } } @@ -43,7 +43,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// ReadingTableQuestionSystemAddOrEdit 列表查询参数模型 public class ReadingTableQuestionSystemAddOrEdit { - public Guid Id { get; set; } + public Guid? Id { get; set; } public Guid ReadingQuestionId { get; set; } public string Type { get; set; } public Guid? ParentId { get; set; } @@ -59,7 +59,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public Guid? RelevanceId { get; set; } public string RelevanceValue { get; set; } public int ShowQuestion { get; set; } - public int? MaxQuestionCount { get; set; } + public int MaxRowCount { get; set; } public string DataTableName { get; set; } public string DataTableColumn { get; set; } } diff --git a/IRaCIS.Core.Domain/Reading/ReadingTableQuestionSystem.cs b/IRaCIS.Core.Domain/Reading/ReadingTableQuestionSystem.cs index 59e291eb3..66dd70e55 100644 --- a/IRaCIS.Core.Domain/Reading/ReadingTableQuestionSystem.cs +++ b/IRaCIS.Core.Domain/Reading/ReadingTableQuestionSystem.cs @@ -94,7 +94,7 @@ namespace IRaCIS.Core.Domain.Models /// /// 最大问题数 /// - public int? MaxQuestionCount { get; set; } + public int MaxRowCount { get; set; } /// /// 数据表名称