using System; using System.Collections; using System.Collections.Generic; namespace AIMSModel { [Serializable] public partial class Appliance { private int? id; private string name; private string hCode; private int? applianceType; private int? useRate; private int? isValid; private int? operatorId; private DateTime? operatorTime; private string remark; /// /// 编号,自增 /// public int? Id { get{ return id; } set{ id=value; } } /// /// 名称 /// public string Name { get{ return name; } set{ name=value; } } /// /// 助记码 /// public string HCode { get{ return hCode; } set{ hCode=value; } } /// /// 器械类别0:器械,1:敷料,9其他 /// public int? ApplianceType { get{ return applianceType; } set{ applianceType=value; } } /// /// 使用频次,默认值为0,每调用一次加1 /// public int? UseRate { get{ return useRate; } set{ useRate=value; } } /// /// 是否有效 /// public int? IsValid { get{ return isValid; } set{ isValid=value; } } /// /// 操作员编号 /// public int? OperatorId { get{ return operatorId; } set{ operatorId=value; } } /// /// 操作时间 /// public DateTime? OperatorTime { get{ return operatorTime; } set{ operatorTime=value; } } /// /// 备注 /// public string Remark { get{ return remark; } set{ remark=value; } } } }