using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.Peis.Symptoms
{
public class SymptomDto : AuditedEntityDtoName
{
///
/// 症状名称
///
public string DisplayName { get; set; }
///
/// 自定义简码
///
public string SimpleCode { get; set; }
///
/// 显示顺序
///
public int DisplayOrder { get; set; }
}
}