StableVersion4.3/HL_FristAidPlatform_Models/Base/T_Base_PreHospitalBasicData.cs

21 lines
443 B
C#
Raw Permalink Normal View History

2024-03-11 09:47:34 +08:00
using SqlSugar;
using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// 院前基础数据
/// </summary>
public class T_Base_PreHospitalBasicData
{
[Key]
[SugarColumn(IsIdentity = true)]
public int ID { get; set; }
public string Name { get; set; }
public int Type { get; set; }
public int DeleteFlag { get; set; }
}
}