using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SchedulingSystemClient.EntityClass
{
public class Cus_PBB
{
public int ID { get; set; }
///
/// 手术室ID
///
public int SSSID { get; set; }
///
/// 手术室名称
///
public string SSSMC { get; set; }
///
/// 医生ID
///
public int YSID { get; set; }
///
/// 医生名称
///
public string YSMC { get; set; }
///
/// 科室ID
///
public int KSID { get; set; }
///
/// 科室名称
///
public string KSMC { get; set; }
///
/// 手术类型ID
///
public int SSLXID { get; set; }
///
/// 手术类型名称
///
public string SSLX { get; set; }
///
/// 手术名称
///
public string SSMC { get; set; }
///
/// 患者姓名
///
public string HZXM { get; set; }
///
/// 住院号
///
public string ZYH { get; set; }
///
/// 诊疗卡号
///
public string ZLKH { get; set; }
///
/// 开始时间
///
public DateTime? KSSJ { get; set; }
///
/// 开始日期
///
public DateTime? KSRQ { get; set; }
///
/// 开始时间
///
public string StrKSSJ { get; set; }
///
/// 手术时间
///
public int? SSSC { get; set; }
///
/// 排班状态
///
public int? PBZT { get; set; }
///
/// 排班状态
///
public string StrPBZT { get; set; }
public decimal? SSZSC { get; set; }
public decimal? SSSQJSC { get; set; }
public int? QZ { get; set; }
public decimal? SSSJ { get; set; }
public decimal? QJSC { get; set; }
public string SSQJD { get; set; }
}
}