196 lines
4.0 KiB
C#
196 lines
4.0 KiB
C#
/** 版本信息模板在安装目录下,可自行修改。
|
|
* app_power_plan.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: app_power_plan
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2024/11/14 14:52:46 N/A 初版
|
|
*
|
|
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
|
*┌──────────────────────────────────┐
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
|
|
*│ 版权所有:动软卓越(北京)科技有限公司 │
|
|
*└──────────────────────────────────┘
|
|
*/
|
|
using System;
|
|
namespace Competition.Mysql.Model
|
|
{
|
|
/// <summary>
|
|
/// app_power_plan:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class app_power_plan
|
|
{
|
|
public app_power_plan()
|
|
{}
|
|
#region Model
|
|
private string _id;
|
|
private string _client_id;
|
|
private string _power_nature;
|
|
private string _power_type;
|
|
private string _power_capacity;
|
|
private string _power_voltage;
|
|
private string _in_line_type;
|
|
private string _power_phase;
|
|
private string _protect_type;
|
|
private string _relay_protect_type;
|
|
private string _property_split;
|
|
private string _in_line_no;
|
|
private string _power_remark;
|
|
private string _station_info;
|
|
private DateTime? _create_time;
|
|
private string _r1;
|
|
private string _r2;
|
|
private string _r3;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string id
|
|
{
|
|
set{ _id=value;}
|
|
get{return _id;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string client_id
|
|
{
|
|
set{ _client_id=value;}
|
|
get{return _client_id;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string power_nature
|
|
{
|
|
set{ _power_nature=value;}
|
|
get{return _power_nature;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string power_type
|
|
{
|
|
set{ _power_type=value;}
|
|
get{return _power_type;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string power_capacity
|
|
{
|
|
set{ _power_capacity=value;}
|
|
get{return _power_capacity;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string power_voltage
|
|
{
|
|
set{ _power_voltage=value;}
|
|
get{return _power_voltage;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string in_line_type
|
|
{
|
|
set{ _in_line_type=value;}
|
|
get{return _in_line_type;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string power_phase
|
|
{
|
|
set{ _power_phase=value;}
|
|
get{return _power_phase;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string protect_type
|
|
{
|
|
set{ _protect_type=value;}
|
|
get{return _protect_type;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string relay_protect_type
|
|
{
|
|
set{ _relay_protect_type=value;}
|
|
get{return _relay_protect_type;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string property_split
|
|
{
|
|
set{ _property_split=value;}
|
|
get{return _property_split;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string in_line_no
|
|
{
|
|
set{ _in_line_no=value;}
|
|
get{return _in_line_no;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string power_remark
|
|
{
|
|
set{ _power_remark=value;}
|
|
get{return _power_remark;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string station_info
|
|
{
|
|
set{ _station_info=value;}
|
|
get{return _station_info;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? create_time
|
|
{
|
|
set{ _create_time=value;}
|
|
get{return _create_time;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string r1
|
|
{
|
|
set{ _r1=value;}
|
|
get{return _r1;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string r2
|
|
{
|
|
set{ _r2=value;}
|
|
get{return _r2;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string r3
|
|
{
|
|
set{ _r3=value;}
|
|
get{return _r3;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|