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 patient : IBaseModel { /// /// id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 患者姓名 /// public string name { get; set; } /// /// 性别 /// public string Gender { get; set; } /// /// 出生地 /// public string BirthPlace { get; set; } /// /// 联系电话 /// public string Telephone { get; set; } /// /// 身份证号 /// public string IdCard { get; set; } /// /// 出院科室 /// public string cydeptname { get; set; } /// /// 入院时间 /// public DateTime? ryday { get; set; } /// /// 出出院时间 /// public DateTime? cyday { get; set; } /// /// 随访状态 /// public string sfstate { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } } }