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.
27 lines
677 B
27 lines
677 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.SumDiagnosises
|
|
{
|
|
public class SumDiagnosisDto
|
|
{
|
|
/// <summary>
|
|
/// 病人登记ID
|
|
/// </summary>
|
|
public Guid PatientRegisterId { get; set; }
|
|
/// <summary>
|
|
/// 诊断ID
|
|
/// </summary>
|
|
[Key]
|
|
public Guid DiagnosisId { get; set; }
|
|
/// <summary>
|
|
/// 建议头ID
|
|
/// </summary>
|
|
public Guid SumSuggestionHeaderId { get; set; }
|
|
|
|
public int DisplayOrder { get; set; }
|
|
}
|
|
}
|