113 lines
2.3 KiB
C#
113 lines
2.3 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DrawGraph
|
|
{
|
|
[Serializable]
|
|
public partial class ApplianceRecord
|
|
{
|
|
private int? id;
|
|
private int? operationRecordId;
|
|
private int? operationGoodsBillRecord;
|
|
private int? applianceId;
|
|
private string applianceName;
|
|
private string opeFront;
|
|
private string opeDoing;
|
|
private string closeFront;
|
|
private string closeLast;
|
|
private string skinCloseLast;
|
|
private string pack;
|
|
|
|
|
|
/// <summary>
|
|
/// 编号,自增
|
|
/// </summary>
|
|
public int? Id
|
|
{
|
|
get{ return id; }
|
|
set{ id=value; }
|
|
}
|
|
/// <summary>
|
|
/// 手术记录编号
|
|
/// </summary>
|
|
public int? OperationRecordId
|
|
{
|
|
get{ return operationRecordId; }
|
|
set{ operationRecordId=value; }
|
|
}
|
|
/// <summary>
|
|
/// 术中物品清点单记录编号
|
|
/// </summary>
|
|
public int? OperationGoodsBillRecord
|
|
{
|
|
get{ return operationGoodsBillRecord; }
|
|
set{ operationGoodsBillRecord=value; }
|
|
}
|
|
/// <summary>
|
|
/// 器械编号
|
|
/// </summary>
|
|
public int? ApplianceId
|
|
{
|
|
get{ return applianceId; }
|
|
set{ applianceId=value; }
|
|
}
|
|
/// <summary>
|
|
/// 器械名称
|
|
/// </summary>
|
|
public string ApplianceName
|
|
{
|
|
get{ return applianceName; }
|
|
set{ applianceName=value; }
|
|
}
|
|
/// <summary>
|
|
/// 术前清点数量
|
|
/// </summary>
|
|
public string OpeFront
|
|
{
|
|
get{ return opeFront; }
|
|
set{ opeFront=value; }
|
|
}
|
|
/// <summary>
|
|
/// 术中增加数量
|
|
/// </summary>
|
|
public string OpeDoing
|
|
{
|
|
get{ return opeDoing; }
|
|
set{ opeDoing=value; }
|
|
}
|
|
/// <summary>
|
|
/// 关闭腔体前数量
|
|
/// </summary>
|
|
public string CloseFront
|
|
{
|
|
get{ return closeFront; }
|
|
set{ closeFront=value; }
|
|
}
|
|
/// <summary>
|
|
/// 关闭腔体后数量
|
|
/// </summary>
|
|
public string CloseLast
|
|
{
|
|
get{ return closeLast; }
|
|
set{ closeLast=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SkinCloseLast
|
|
{
|
|
get{ return skinCloseLast; }
|
|
set{ skinCloseLast=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Pack
|
|
{
|
|
get{ return pack; }
|
|
set{ pack=value; }
|
|
}
|
|
}
|
|
}
|