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(); } }