修改
continuous-integration/drone/push Build is passing Details

IRC_NewDev
he 2024-11-04 17:51:53 +08:00
parent f17001bace
commit 3354aa37f4
5 changed files with 8 additions and 6 deletions

View File

@ -2499,7 +2499,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// <summary>
/// 是否显示
/// </summary>
public int ShowQuestion { get; set; }
public ShowQuestion ShowQuestion { get; set; }
/// <summary>
/// 最大问题数

View File

@ -438,7 +438,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string Remark { get; set; }
public Guid? RelevanceId { get; set; }
public string RelevanceValue { get; set; } = string.Empty;
public int ShowQuestion { get; set; }
public ShowQuestion ShowQuestion { get; set; }
public int? MaxRowCount { get; set; }
public string DataTableName { get; set; } = string.Empty;
public string DataTableColumn { get; set; } = string.Empty;
@ -577,7 +577,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string Remark { get; set; }
public Guid? RelevanceId { get; set; }
public string RelevanceValue { get; set; } = string.Empty;
public int ShowQuestion { get; set; }
public ShowQuestion ShowQuestion { get; set; }
public int? MaxRowCount { get; set; }
public string DataTableName { get; set; } = string.Empty;
public string DataTableColumn { get; set; } = string.Empty;
@ -1707,7 +1707,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string RelevanceValue { get; set; } = string.Empty;
[Comment("是否显示")]
public int ShowQuestion { get; set; }
public ShowQuestion ShowQuestion { get; set; }
[Comment("最大问题数")]
public int? MaxRowCount { get; set; }

View File

@ -284,6 +284,7 @@ namespace IRaCIS.Core.Application.Service
RelevanceValue = x.RelevanceValue,
ImageCount = 0,
ParentId = item.Id,
ShowQuestion=x.ShowQuestion,
DataTableColumn = x.DataTableColumn,
LesionType = item.LesionType,
QuestionName = x.QuestionName,
@ -298,6 +299,7 @@ namespace IRaCIS.Core.Application.Service
Id = x.Id,
DictionaryCode = x.DictionaryCode,
Type = x.Type,
ShowQuestion = x.ShowQuestion,
TableQuestionType = x.TableQuestionType,
DependParentId = x.DependParentId,
IsDepend = x.IsDepend,

View File

@ -87,7 +87,7 @@ public class ReadingTableQuestionSystem : BaseAddAuditEntity
public string RelevanceValue { get; set; } = string.Empty;
[Comment("是否显示")]
public int ShowQuestion { get; set; }
public ShowQuestion ShowQuestion { get; set; }
[Comment("最大问题数")]
public int? MaxRowCount { get; set; }

View File

@ -90,7 +90,7 @@ public class ReadingTableQuestionTrial : BaseAddAuditEntity
public string RelevanceValue { get; set; } = string.Empty;
public int ShowQuestion { get; set; }
public ShowQuestion ShowQuestion { get; set; }
public int? MaxRowCount { get; set; }
[Comment("图片数量")]