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 Bbsqs : 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 Hzjcxm { get; set; } /// /// 转诊目的 /// public string Syzzzzmd { get; set; } /// /// 就诊时间 /// public DateTime? Xyjzsj { get; set; } /// /// 责任人 /// public string Syzzzrr { get; set; } /// /// 结果出具时间 /// public DateTime? Xyjgcjsj { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } } }