96 lines
1.9 KiB
C#
96 lines
1.9 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AIMSModel
|
|
{
|
|
[Serializable]
|
|
public partial class InstrumentRegistration
|
|
{
|
|
private int? id;
|
|
private string name;
|
|
private string numbers;
|
|
private string performance;
|
|
private string intact;
|
|
private string operatorName;
|
|
private DateTime? operatorTime;
|
|
private string remark;
|
|
private string isClean;
|
|
|
|
|
|
/// <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 Numbers
|
|
{
|
|
get{ return numbers; }
|
|
set{ numbers=value; }
|
|
}
|
|
/// <summary>
|
|
/// 性能检测
|
|
/// </summary>
|
|
public string Performance
|
|
{
|
|
get{ return performance; }
|
|
set{ performance=value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否完好备用
|
|
/// </summary>
|
|
public string Intact
|
|
{
|
|
get{ return intact; }
|
|
set{ intact=value; }
|
|
}
|
|
/// <summary>
|
|
/// 操作人
|
|
/// </summary>
|
|
public string OperatorName
|
|
{
|
|
get{ return operatorName; }
|
|
set{ operatorName=value; }
|
|
}
|
|
/// <summary>
|
|
/// 日期
|
|
/// </summary>
|
|
public DateTime? OperatorTime
|
|
{
|
|
get{ return operatorTime; }
|
|
set{ operatorTime=value; }
|
|
}
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark
|
|
{
|
|
get{ return remark; }
|
|
set{ remark=value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否清洁
|
|
/// </summary>
|
|
public string IsClean
|
|
{
|
|
get { return isClean; }
|
|
set { isClean = value; }
|
|
}
|
|
|
|
}
|
|
}
|