diff --git a/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/CreateQuestionAnswerDto.cs b/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/CreateQuestionAnswerDto.cs
index a5ce447..17bd4dc 100644
--- a/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/CreateQuestionAnswerDto.cs
+++ b/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/CreateQuestionAnswerDto.cs
@@ -21,12 +21,12 @@ namespace Shentun.WebPeis.QuestionAnswers
///
- /// 子答案类别
+ /// 子答案类别 0-单选 1-多选
///
public char? ChildAnswerType { get; set; }
///
- /// 答案结果类别
+ /// 答案结果类别 0-选择 1-填写
///
public char? AnswerResultType { get; set; }
diff --git a/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerDto.cs b/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerDto.cs
index 5809d69..2ec2b4d 100644
--- a/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerDto.cs
+++ b/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerDto.cs
@@ -24,12 +24,12 @@ namespace Shentun.WebPeis.QuestionAnswers
///
- /// 子答案类别
+ /// 子答案类别 0-单选 1-多选
///
public char? ChildAnswerType { get; set; }
///
- /// 答案结果类别
+ /// 答案结果类别 0-选择 1-填写
///
public char? AnswerResultType { get; set; }
diff --git a/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerTreeListDto.cs b/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerTreeListDto.cs
index 30c167b..91e9fe9 100644
--- a/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerTreeListDto.cs
+++ b/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/QuestionAnswerTreeListDto.cs
@@ -24,12 +24,12 @@ namespace Shentun.WebPeis.QuestionAnswers
///
- /// 子答案类别
+ /// 子答案类别 0-单选 1-多选
///
public char? ChildAnswerType { get; set; }
///
- /// 答案结果类别
+ /// 答案结果类别 0-选择 1-填写
///
public char? AnswerResultType { get; set; }
diff --git a/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/UpdateQuestionAnswerDto.cs b/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/UpdateQuestionAnswerDto.cs
index 0e2237b..40e5569 100644
--- a/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/UpdateQuestionAnswerDto.cs
+++ b/src/Shentun.WebPeis.Application.Contracts/QuestionAnswers/UpdateQuestionAnswerDto.cs
@@ -25,12 +25,12 @@ namespace Shentun.WebPeis.QuestionAnswers
///
- /// 子答案类别
+ /// 子答案类别 0-单选 1-多选
///
public char? ChildAnswerType { get; set; }
///
- /// 答案结果类别
+ /// 答案结果类别 0-选择 1-填写
///
public char? AnswerResultType { get; set; }
diff --git a/src/Shentun.WebPeis.Domain/Models/QuestionAnswer.cs b/src/Shentun.WebPeis.Domain/Models/QuestionAnswer.cs
index ecc88ec..abaf4d0 100644
--- a/src/Shentun.WebPeis.Domain/Models/QuestionAnswer.cs
+++ b/src/Shentun.WebPeis.Domain/Models/QuestionAnswer.cs
@@ -28,12 +28,12 @@ public partial class QuestionAnswer : AuditedEntity, IHasConcurrencyStamp, IDisp
///
- /// 子答案类别
+ /// 子答案类别 0-单选 1-多选
///
public char? ChildAnswerType { get; set; }
///
- /// 答案结果类别
+ /// 答案结果类别 0-选择 1-填写
///
public char? AnswerResultType { get; set; }