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.
24 lines
635 B
24 lines
635 B
using Shentun.Peis.SumSuggestionContents;
|
|
using Shentun.Peis.SumSummaryContents;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.SumSuggestionHeaders
|
|
{
|
|
public class CreateSumSuggestionHeaderOrContentDto
|
|
{
|
|
/// <summary>
|
|
/// 病人登记ID
|
|
/// </summary>
|
|
public Guid PatientRegisterId { get; set; }
|
|
/// <summary>
|
|
/// 建议标题
|
|
/// </summary>
|
|
public string SuggestionTitle { get; set; }
|
|
|
|
public Guid? DiagnosisId { get; set; }
|
|
|
|
public List<CreateSumSuggestionContentDto> Details { get; set; }
|
|
}
|
|
}
|