Browse Source

答案

master
wxd 1 year ago
parent
commit
ab88dd54c6
  1. 4
      src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/CreateQuestionAnswerDto.cs
  2. 4
      src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerDto.cs
  3. 4
      src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerTreeListDto.cs
  4. 4
      src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/UpdateQuestionAnswerDto.cs
  5. 4
      src/Shentun.WebPeis.Domain/Models/QuestionAnswer.cs

4
src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/CreateQuestionAnswerDto.cs

@ -21,12 +21,12 @@ namespace Shentun.WebPeis.QuestionAnswers
/// <summary>
/// 子答案类别
/// 子答案类别 0-单选 1-多选
/// </summary>
public char? ChildAnswerType { get; set; }
/// <summary>
/// 答案结果类别
/// 答案结果类别 0-选择 1-填写
/// </summary>
public char? AnswerResultType { get; set; }

4
src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerDto.cs

@ -24,12 +24,12 @@ namespace Shentun.WebPeis.QuestionAnswers
/// <summary>
/// 子答案类别
/// 子答案类别 0-单选 1-多选
/// </summary>
public char? ChildAnswerType { get; set; }
/// <summary>
/// 答案结果类别
/// 答案结果类别 0-选择 1-填写
/// </summary>
public char? AnswerResultType { get; set; }

4
src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerTreeListDto.cs

@ -24,12 +24,12 @@ namespace Shentun.WebPeis.QuestionAnswers
/// <summary>
/// 子答案类别
/// 子答案类别 0-单选 1-多选
/// </summary>
public char? ChildAnswerType { get; set; }
/// <summary>
/// 答案结果类别
/// 答案结果类别 0-选择 1-填写
/// </summary>
public char? AnswerResultType { get; set; }

4
src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/UpdateQuestionAnswerDto.cs

@ -25,12 +25,12 @@ namespace Shentun.WebPeis.QuestionAnswers
/// <summary>
/// 子答案类别
/// 子答案类别 0-单选 1-多选
/// </summary>
public char? ChildAnswerType { get; set; }
/// <summary>
/// 答案结果类别
/// 答案结果类别 0-选择 1-填写
/// </summary>
public char? AnswerResultType { get; set; }

4
src/Shentun.WebPeis.Domain/Models/QuestionAnswer.cs

@ -28,12 +28,12 @@ public partial class QuestionAnswer : AuditedEntity, IHasConcurrencyStamp, IDisp
/// <summary>
/// 子答案类别
/// 子答案类别 0-单选 1-多选
/// </summary>
public char? ChildAnswerType { get; set; }
/// <summary>
/// 答案结果类别
/// 答案结果类别 0-选择 1-填写
/// </summary>
public char? AnswerResultType { get; set; }

Loading…
Cancel
Save