2022-08-23 21:12:59 +08:00

95 lines
1.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}
}