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.
23 lines
529 B
23 lines
529 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.Symptoms
|
|
{
|
|
public class SymptomDto : AuditedEntityDtoName
|
|
{
|
|
/// <summary>
|
|
/// 症状名称
|
|
/// </summary>
|
|
public string DisplayName { get; set; }
|
|
/// <summary>
|
|
/// 自定义简码
|
|
/// </summary>
|
|
public string SimpleCode { get; set; }
|
|
/// <summary>
|
|
/// 显示顺序
|
|
/// </summary>
|
|
public int DisplayOrder { get; set; }
|
|
}
|
|
|
|
}
|