You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
745 B
30 lines
745 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
|
|
namespace SchedulingSystem.EntityClass |
|
{ |
|
public class Cus_Ssqjdb |
|
{ |
|
/// <summary> |
|
/// 清洁度ID |
|
/// </summary> |
|
public int ID { get; set; } |
|
/// <summary> |
|
/// 手术清洁度 |
|
/// </summary> |
|
public string SSQJD { get; set; } |
|
/// <summary> |
|
/// 清洁时间 |
|
/// </summary> |
|
public int? QJSJID { get; set; } |
|
public decimal? QJSJ { get; set; } |
|
public string strQJSJ { get; set; } |
|
/// <summary> |
|
/// 是否启用 |
|
/// </summary> |
|
public string strSFQY { get; set; } |
|
public bool? SFQY { get; set; } |
|
} |
|
}
|
|
|