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 Xzzys : 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 Hzjcxm { get; set; }
///
/// 联系方式
///
public string Hzlxfs { get; set; }
///
/// 转诊目的
///
public string Syzzzzmd { get; set; }
///
/// 住院时间
///
public DateTime? Syzysj { get; set; }
///
/// 诊前提醒
///
public string Syzqtx { get; set; }
///
/// 责任人
///
public string Syzzzrr { get; set; }
///
/// 诊中服务
///
public string Syzzzzfw { get; set; }
///
/// 责任人
///
public string Syzzzrrs { get; set; }
///
/// 诊后追踪服务
///
public string Syzzzhzzfw { get; set; }
///
/// 责任人
///
public string Syzzzrrss { get; set; }
///
/// 是否标红
///
public int isred { get; set; }
///
/// 是否删除
///
public int isdelete { get; set; }
}
}