95 lines
1.9 KiB
C#
95 lines
1.9 KiB
C#
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;
|
||
|
||
|
||
/// <summary>
|
||
/// 编号,自增
|
||
/// </summary>
|
||
public int? Id
|
||
{
|
||
get{ return id; }
|
||
set{ id=value; }
|
||
}
|
||
/// <summary>
|
||
/// 名称
|
||
/// </summary>
|
||
public string Name
|
||
{
|
||
get{ return name; }
|
||
set{ name=value; }
|
||
}
|
||
/// <summary>
|
||
/// 助记码
|
||
/// </summary>
|
||
public string HCode
|
||
{
|
||
get{ return hCode; }
|
||
set{ hCode=value; }
|
||
}
|
||
/// <summary>
|
||
/// 器械类别0:器械,1:敷料,9其他
|
||
/// </summary>
|
||
public int? ApplianceType
|
||
{
|
||
get{ return applianceType; }
|
||
set{ applianceType=value; }
|
||
}
|
||
/// <summary>
|
||
/// 使用频次,默认值为0,每调用一次加1
|
||
/// </summary>
|
||
public int? UseRate
|
||
{
|
||
get{ return useRate; }
|
||
set{ useRate=value; }
|
||
}
|
||
/// <summary>
|
||
/// 是否有效
|
||
/// </summary>
|
||
public int? IsValid
|
||
{
|
||
get{ return isValid; }
|
||
set{ isValid=value; }
|
||
}
|
||
/// <summary>
|
||
/// 操作员编号
|
||
/// </summary>
|
||
public int? OperatorId
|
||
{
|
||
get{ return operatorId; }
|
||
set{ operatorId=value; }
|
||
}
|
||
/// <summary>
|
||
/// 操作时间
|
||
/// </summary>
|
||
public DateTime? OperatorTime
|
||
{
|
||
get{ return operatorTime; }
|
||
set{ operatorTime=value; }
|
||
}
|
||
/// <summary>
|
||
/// 备注
|
||
/// </summary>
|
||
public string Remark
|
||
{
|
||
get{ return remark; }
|
||
set{ remark=value; }
|
||
}
|
||
}
|
||
}
|