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.
49 lines
1.0 KiB
49 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Shentun.WebPeis.Models;
|
|
|
|
public partial class Diagnosis
|
|
{
|
|
public Guid DiagnosisId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string DiagnosisName { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 项目类别
|
|
/// </summary>
|
|
public Guid ItemTypeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 建议名称
|
|
/// </summary>
|
|
public string SuggestionName { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 是疾病
|
|
/// </summary>
|
|
public char IsIll { get; set; }
|
|
|
|
public char ForSexId { get; set; }
|
|
|
|
public short DiagnosisLevelId { get; set; }
|
|
|
|
public string? SimpleCode { get; set; }
|
|
|
|
public int DisplayOrder { get; set; }
|
|
|
|
public string? ConcurrencyStamp { get; set; }
|
|
|
|
public DateTime CreationTime { get; set; }
|
|
|
|
public Guid CreatorId { get; set; }
|
|
|
|
public DateTime LastModificationTime { get; set; }
|
|
|
|
public Guid LastModifierId { get; set; }
|
|
|
|
public virtual ItemType ItemType { get; set; } = null!;
|
|
}
|