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.
44 lines
1.1 KiB
44 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.Diagnosises
|
|
{
|
|
public class UpdateDiagnosisDto
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string DisplayName { get; set; }
|
|
/// <summary>
|
|
/// 项目类别
|
|
/// </summary>
|
|
public Guid ItemTypeId { get; set; }
|
|
/// <summary>
|
|
/// 建议名称
|
|
/// </summary>
|
|
public string SuggestionName { get; set; }
|
|
/// <summary>
|
|
/// 是疾病
|
|
/// </summary>
|
|
public char IsIll { get; set; }
|
|
/// <summary>
|
|
/// 是总检模板
|
|
/// </summary>
|
|
public char IsSummaryTemplate { get; set; }
|
|
/// <summary>
|
|
/// 适用性别
|
|
/// </summary>
|
|
public char ForSexId { get; set; }
|
|
/// <summary>
|
|
/// 诊断级别
|
|
/// </summary>
|
|
public short DiagnosisLevelId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public char IsActive { get; set; } = 'Y';
|
|
|
|
}
|
|
}
|