20 lines
479 B
C#
20 lines
479 B
C#
using SqlSugar;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace HL_FristAidPlatform_Models
|
|
{
|
|
/// <summary>
|
|
/// 诊断分类
|
|
/// </summary>
|
|
public class T_Base_Diagnose
|
|
{
|
|
[Key]
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public int ID { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
public string Code { get; set; }
|
|
public string StrokeCodes { get; set; }
|
|
public string PinyinCode { get; set; }
|
|
}
|
|
} |