From 85fbd0fa14651b65dc28f6bd96e9a8425e758bf7 Mon Sep 17 00:00:00 2001 From: "DESKTOP-G961P6V\\Zhh" <839860190@qq.com> Date: Fri, 14 Jun 2024 01:51:47 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E5=8D=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../QuestionRegisters/QuestionRegisterAnswerDto.cs | 7 ++++++- .../QuestionRegisters/QuestionRegisterDto.cs | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Shentun.WebPeis.Application.Contracts/QuestionRegisters/QuestionRegisterAnswerDto.cs b/src/Shentun.WebPeis.Application.Contracts/QuestionRegisters/QuestionRegisterAnswerDto.cs index 8857593..9d91db4 100644 --- a/src/Shentun.WebPeis.Application.Contracts/QuestionRegisters/QuestionRegisterAnswerDto.cs +++ b/src/Shentun.WebPeis.Application.Contracts/QuestionRegisters/QuestionRegisterAnswerDto.cs @@ -30,7 +30,9 @@ namespace Shentun.WebPeis.QuestionRegisters public string QuestionAnswerName { get; set; } = null!; - + /// + /// 显示顺序 + /// public int DisplayOrder { get; set; } /// @@ -44,6 +46,9 @@ namespace Shentun.WebPeis.QuestionRegisters public char? AnswerResultType { get; set; } + /// + /// 是否选中 + /// public char IsSelected { get; set; } = 'N'; /// diff --git a/src/Shentun.WebPeis.Application.Contracts/QuestionRegisters/QuestionRegisterDto.cs b/src/Shentun.WebPeis.Application.Contracts/QuestionRegisters/QuestionRegisterDto.cs index 9f45e3f..0ee7f7d 100644 --- a/src/Shentun.WebPeis.Application.Contracts/QuestionRegisters/QuestionRegisterDto.cs +++ b/src/Shentun.WebPeis.Application.Contracts/QuestionRegisters/QuestionRegisterDto.cs @@ -20,7 +20,7 @@ namespace Shentun.WebPeis.QuestionRegisters /// 登记的问卷项目 /// - public virtual ICollection QuestionRegisterItems { get; set; } = new List(); + public List QuestionRegisterItems { get; set; } = new List(); } }