277 lines
5.3 KiB
C#
277 lines
5.3 KiB
C#
/** 版本信息模板在安装目录下,可自行修改。
|
|
* loop_distribution.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: loop_distribution
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2023/12/21 17:34:31 N/A 初版
|
|
*
|
|
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
|
*┌──────────────────────────────────┐
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
|
|
*│ 版权所有:动软卓越(北京)科技有限公司 │
|
|
*└──────────────────────────────────┘
|
|
*/
|
|
using System;
|
|
namespace DataServer.Model
|
|
{
|
|
/// <summary>
|
|
/// loop_distribution:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class loop_distribution
|
|
{
|
|
public loop_distribution()
|
|
{}
|
|
#region Model
|
|
private string _loopdistributionid;
|
|
private string _loopname;
|
|
private string _serialnumber;
|
|
private string _distributionname;
|
|
private string _devicename;
|
|
private string _unittype;
|
|
private string _manufacturer;
|
|
private string _ratedcapacity;
|
|
private string _nominalvoltage;
|
|
private string _commissioningtime;
|
|
private string _operationalcondition;
|
|
private decimal? _ia;
|
|
private decimal? _ib;
|
|
private decimal? _ic;
|
|
private decimal? _ua;
|
|
private decimal? _ub;
|
|
private decimal? _uc;
|
|
private decimal? _currentpower;
|
|
private decimal? _loadrate;
|
|
private decimal? _conversionrate;
|
|
private string _devicewroking;
|
|
private decimal? _eh;
|
|
private string _reserve1;
|
|
private string _reserve2;
|
|
private string _reserve3;
|
|
private string _reserve4;
|
|
private string _reserve5;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string LoopDistributionId
|
|
{
|
|
set{ _loopdistributionid=value;}
|
|
get{return _loopdistributionid;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string LoopName
|
|
{
|
|
set{ _loopname=value;}
|
|
get{return _loopname;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SerialNumber
|
|
{
|
|
set{ _serialnumber=value;}
|
|
get{return _serialnumber;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string DistributionName
|
|
{
|
|
set{ _distributionname=value;}
|
|
get{return _distributionname;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string DeviceName
|
|
{
|
|
set{ _devicename=value;}
|
|
get{return _devicename;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string UnitType
|
|
{
|
|
set{ _unittype=value;}
|
|
get{return _unittype;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ManuFacturer
|
|
{
|
|
set{ _manufacturer=value;}
|
|
get{return _manufacturer;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string RatedCapacity
|
|
{
|
|
set{ _ratedcapacity=value;}
|
|
get{return _ratedcapacity;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string NominalVoltage
|
|
{
|
|
set{ _nominalvoltage=value;}
|
|
get{return _nominalvoltage;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string CommissioningTime
|
|
{
|
|
set{ _commissioningtime=value;}
|
|
get{return _commissioningtime;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string OperationalCondition
|
|
{
|
|
set{ _operationalcondition=value;}
|
|
get{return _operationalcondition;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal? Ia
|
|
{
|
|
set{ _ia=value;}
|
|
get{return _ia;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal? Ib
|
|
{
|
|
set{ _ib=value;}
|
|
get{return _ib;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal? Ic
|
|
{
|
|
set{ _ic=value;}
|
|
get{return _ic;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal? Ua
|
|
{
|
|
set{ _ua=value;}
|
|
get{return _ua;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal? Ub
|
|
{
|
|
set{ _ub=value;}
|
|
get{return _ub;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal? Uc
|
|
{
|
|
set{ _uc=value;}
|
|
get{return _uc;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal? CurrentPower
|
|
{
|
|
set{ _currentpower=value;}
|
|
get{return _currentpower;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal? LoadRate
|
|
{
|
|
set{ _loadrate=value;}
|
|
get{return _loadrate;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal? ConversionRate
|
|
{
|
|
set{ _conversionrate=value;}
|
|
get{return _conversionrate;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string DeviceWroking
|
|
{
|
|
set{ _devicewroking=value;}
|
|
get{return _devicewroking;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal? EH
|
|
{
|
|
set{ _eh=value;}
|
|
get{return _eh;}
|
|
}
|
|
/// <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
|
|
|
|
}
|
|
}
|
|
|