using System; using System.Collections.Generic; using System.Text; using MadRunFabric.Common; using MongoDB.Bson.Serialization.Attributes; using System.ComponentModel.DataAnnotations; namespace MadRunFabric.Model.TestUserTypeApi { public class Hzjbxx : IBaseModel { /// /// id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { 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 int isdelete { get; set; } } }