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.
20 lines
470 B
20 lines
470 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.WebPeis.DiseaseRiskLevels
|
|
{
|
|
public class CreateDiseaseRiskLevelAnswerDto
|
|
{
|
|
/// <summary>
|
|
/// 疾病风险级别ID
|
|
/// </summary>
|
|
public Guid DiseaseRiskLevelId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 问卷答案ID 集合
|
|
/// </summary>
|
|
public List<Guid> QuestionAnswerIds { get; set; } = new List<Guid>();
|
|
|
|
}
|
|
}
|