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 Yytxluinfo : IBaseModel { [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 科室名称 /// public string deptname { get; set; } = ""; /// /// 医生姓名 /// public string doctorname { get; set; } /// /// 手机号 /// public string phonemodel { get; set; } /// /// 内线 /// public string nbxlmodel { get; set; } /// /// 小号 /// public string xhmodel { get; set; } /// /// 创建时间 /// public DateTime createtime { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } } }