151 lines
3.3 KiB
C#
151 lines
3.3 KiB
C#
/** 版本信息模板在安装目录下,可自行修改。
|
|
* secondary_pump.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: secondary_pump
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2024/3/1 10:09:13 N/A 初版
|
|
*
|
|
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
|
*┌──────────────────────────────────┐
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
|
|
*│ 版权所有:动软卓越(北京)科技有限公司 │
|
|
*└──────────────────────────────────┘
|
|
*/
|
|
using System;
|
|
namespace DataServer.Model
|
|
{
|
|
/// <summary>
|
|
/// secondary_pump:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class secondary_pump
|
|
{
|
|
public secondary_pump()
|
|
{}
|
|
#region Model
|
|
private string _secondaryid;
|
|
private string _secondaryname;
|
|
private string _secondarynumberone;
|
|
private string _secondarynumbertwo;
|
|
private string _secondarystateone;
|
|
private string _secondarystatetwo;
|
|
private string _secondaryfrequencyname;
|
|
private string _secondaryfrequency;
|
|
private string _reserve1;
|
|
private string _reserve2;
|
|
private string _reserve3;
|
|
private string _reserve4;
|
|
private string _reserve5;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SecondaryId
|
|
{
|
|
set{ _secondaryid=value;}
|
|
get{return _secondaryid;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SecondaryName
|
|
{
|
|
set{ _secondaryname=value;}
|
|
get{return _secondaryname;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SecondaryNumberOne
|
|
{
|
|
set{ _secondarynumberone=value;}
|
|
get{return _secondarynumberone;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SecondaryNumberTwo
|
|
{
|
|
set{ _secondarynumbertwo=value;}
|
|
get{return _secondarynumbertwo;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SecondaryStateOne
|
|
{
|
|
set{ _secondarystateone=value;}
|
|
get{return _secondarystateone;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SecondaryStateTwo
|
|
{
|
|
set{ _secondarystatetwo=value;}
|
|
get{return _secondarystatetwo;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SecondaryFrequencyName
|
|
{
|
|
set{ _secondaryfrequencyname=value;}
|
|
get{return _secondaryfrequencyname;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SecondaryFrequency
|
|
{
|
|
set{ _secondaryfrequency=value;}
|
|
get{return _secondaryfrequency;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Reserve1
|
|
{
|
|
set{ _reserve1=value;}
|
|
get{return _reserve1;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Reserve2
|
|
{
|
|
set{ _reserve2=value;}
|
|
get{return _reserve2;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Reserve3
|
|
{
|
|
set{ _reserve3=value;}
|
|
get{return _reserve3;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Reserve4
|
|
{
|
|
set{ _reserve4=value;}
|
|
get{return _reserve4;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Reserve5
|
|
{
|
|
set{ _reserve5=value;}
|
|
get{return _reserve5;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|