using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SchedulingSystem.EntityClass
{
public class Cus_YsLb
{
public int ID { get; set; }
///
/// 医生名称
///
public string YSMC { get; set; }
///
/// 医生编码
///
public string YSBM { get; set; }
///
/// 性别
///
public string XB { get; set; }
///
/// 籍贯
///
public string JG { get; set; }
///
/// 出生日期
///
public string CSRQ { get; set; }
///
/// 医生职称
///
public string YSJB { get; set; }
public int intYSJB { get; set; }
///
/// 是否启用
///
public string SFQY { get; set; }
///
/// 是否启用
///
public bool? bitSFQY { get; set; }
}
}