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.

32 lines
892 B

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Shentun.Peis.Suggestions
{
public class CreateSuggestionManyDto
{
/// <summary>
/// 诊断ID
/// </summary>
[Required(ErrorMessage = "诊断ID不能为空")]
public Guid DiagnosisId { get; set; }
/// <summary>
/// 建议类型(0-代表医学解释,1-代表健康指导)
/// </summary>
public char SuggestionType { get; set; }
public List<CreateSuggestionMany_Detail> Details { get; set; } = new List<CreateSuggestionMany_Detail>();
}
public class CreateSuggestionMany_Detail
{
/// <summary>
/// 建议内容
/// </summary>
public string SuggestionContent { get; set; }
}
}