using MadRunFabric.Common; using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace MadRunFabric.Model.TestUserTypeApi { public class Xzzls : IBaseModel { [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 登记时间 /// public DateTime? Szzydjsj { get; set; } /// /// 转诊单位 /// public string Szzyzzdw { get; set; } /// /// 转诊医师 /// public string Szzyzzys { get; set; } /// /// 联系方式 /// public string Yslxfs { get; set; } /// /// 患者姓名 /// public string Hzname { get; set; } /// /// 性别 /// public string HzGender { get; set; } /// /// 年龄 /// public string Hzage { get; set; } /// /// 诊断 /// public string Hzzd { get; set; } /// /// 检查项目 /// public string Hzjcxm { get; set; } /// /// 联系方式 /// public string Hzlxfs { get; set; } /// /// 转诊目的 /// public string Syzzzzmd { get; set; } /// /// 就诊时间 /// public DateTime? Xyjzsj { get; set; } /// /// 登记人 /// public string Syzzzrr { get; set; } /// /// 是否标红 /// public int isred { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } } }