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