using System; using System.Collections.Generic; using System.Text; namespace Shentun.WebPeis.QuestionAnswers { public class CreateQuestionAnswerAsbitemDto { /// /// 问卷答案ID /// public Guid QuestionAnswerId { get; set; } /// /// 组合项目集合 /// public List Asbitems { get; set; } = new List(); } public class CreateQuestionAnswerAsbitemDetail { /// /// 组合项目ID /// public Guid AsbitemId { get; set; } /// /// 推荐组合项目级别 1-一级推荐,2-2级推荐,3-3级推荐 /// public short AsbitemRecommendLevelId { get; set; } } }