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; /// /// 编号,自增 /// public int? Id { get{ return id; } set{ id=value; } } /// /// 手术记录编号 /// public int? OperationRecordId { get{ return operationRecordId; } set{ operationRecordId=value; } } /// /// 术中物品清点单记录编号 /// public int? OperationGoodsBillRecord { get{ return operationGoodsBillRecord; } set{ operationGoodsBillRecord=value; } } /// /// 器械编号 /// public int? ApplianceId { get{ return applianceId; } set{ applianceId=value; } } /// /// 器械名称 /// public string ApplianceName { get{ return applianceName; } set{ applianceName=value; } } /// /// 术前清点数量 /// public string OpeFront { get{ return opeFront; } set{ opeFront=value; } } /// /// 术中增加数量 /// public string OpeDoing { get{ return opeDoing; } set{ opeDoing=value; } } /// /// 关闭腔体前数量 /// public string CloseFront { get{ return closeFront; } set{ closeFront=value; } } /// /// 关闭腔体后数量 /// public string CloseLast { get{ return closeLast; } set{ closeLast=value; } } /// /// /// public string SkinCloseLast { get{ return skinCloseLast; } set{ skinCloseLast=value; } } /// /// /// public string Pack { get{ return pack; } set{ pack=value; } } } }