using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SchedulingSystem.EntityClass
{
public class Cus_Ssqjdb
{
///
/// 清洁度ID
///
public int ID { get; set; }
///
/// 手术清洁度
///
public string SSQJD { get; set; }
///
/// 清洁时间
///
public int? QJSJID { get; set; }
public decimal? QJSJ { get; set; }
public string strQJSJ { get; set; }
///
/// 是否启用
///
public string strSFQY { get; set; }
public bool? SFQY { get; set; }
}
}