You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
873 B

1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Shentun.WebPeis.QuestionAnswers
  5. {
  6. public class CreateQuestionAnswerAsbitemDto
  7. {
  8. /// <summary>
  9. /// 问卷答案ID
  10. /// </summary>
  11. public Guid QuestionAnswerId { get; set; }
  12. /// <summary>
  13. /// 组合项目集合
  14. /// </summary>
  15. public List<CreateQuestionAnswerAsbitemDetail> Asbitems { get; set; } = new List<CreateQuestionAnswerAsbitemDetail>();
  16. }
  17. public class CreateQuestionAnswerAsbitemDetail
  18. {
  19. /// <summary>
  20. /// 组合项目ID
  21. /// </summary>
  22. public Guid AsbitemId { get; set; }
  23. /// <summary>
  24. /// 推荐组合项目级别 1-一级推荐,2-2级推荐,3-3级推荐
  25. /// </summary>
  26. public short AsbitemRecommendLevelId { get; set; }
  27. }
  28. }