59 lines
1.0 KiB
C#
59 lines
1.0 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DrawGraph
|
|
{
|
|
[Serializable]
|
|
public partial class FactBloodGasAnalysisData
|
|
{
|
|
private int? id;
|
|
private int? recordId;
|
|
private int? dictId;
|
|
private string name;
|
|
private Decimal? value;
|
|
|
|
public BloodGasAnalysisDict DictRef { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? Id
|
|
{
|
|
get{ return id; }
|
|
set{ id=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? RecordId
|
|
{
|
|
get{ return recordId; }
|
|
set{ recordId=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? DictId
|
|
{
|
|
get{ return dictId; }
|
|
set{ dictId=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Name
|
|
{
|
|
get{ return name; }
|
|
set{ name=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public Decimal? Value
|
|
{
|
|
get{ return value; }
|
|
set{ this.value=value; }
|
|
}
|
|
}
|
|
}
|