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