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 Szzys: 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 Hzzyks { get; set; } /// /// 住院号 /// public string Hzzyh { get; set; } /// /// 联系方式 /// public string Hzlxfs { get; set; } /// /// 转诊目的 /// public string Syzzzzmd { get; set; } /// /// 住院时间 /// public DateTime? Syzysj { get; set; } /// /// 住院费用 /// public string Syzyfy { get; set; } /// /// 责任人 /// public string Syzzzrr { get; set; } /// /// 诊中服务 /// public string Syzzzzfw { get; set; } /// /// 责任人 /// public string Syzzzrrs { get; set; } /// /// 责任人 /// public string Syzzzrrss { get; set; } /// /// 是否标红 /// public int isred { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } /// /// 出院时间 /// public DateTime? cydatetime { get; set; } /// /// 确认状态 /// public string qrstate { get; set; } } }