CompetitionAPI_dotnet/Competition.Mysql/Model/app_measure_point.cs

313 lines
6.1 KiB
C#

/** 版本信息模板在安装目录下,可自行修改。
* app_measure_point.cs
*
* 功 能: N/A
* 类 名: app_measure_point
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
* V0.01 2024/11/20 9:29:35 N/A 初版
*
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
*│ 版权所有:动软卓越(北京)科技有限公司              │
*└──────────────────────────────────┘
*/
using System;
namespace Competition.Mysql.Model
{
/// <summary>
/// app_measure_point:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class app_measure_point
{
public app_measure_point()
{}
#region Model
private string _id;
private string _client_id;
private string _measure_name;
private string _measure_capacity;
private string _measure_way;
private string _is_fill_meter;
private string _measure_info;
private string _power_factor_type;
private string _voltage_level;
private string _inline_type;
private string _is_stop_power;
private string _main_use;
private string _measure_type;
private string _measure_nature;
private string _device_type;
private string _own_side;
private string _shop_attrtype;
private string _agent_price;
private string _station_info;
private string _price_calc_way;
private string _power_factor_stand;
private string _rate_reduce_flag;
private string _rate_value;
private string _exec_order;
private string _is_peak_flag;
private string _fee_hangye_type;
private string _exec_price;
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 measure_name
{
set{ _measure_name=value;}
get{return _measure_name;}
}
/// <summary>
///
/// </summary>
public string measure_capacity
{
set{ _measure_capacity=value;}
get{return _measure_capacity;}
}
/// <summary>
///
/// </summary>
public string measure_way
{
set{ _measure_way=value;}
get{return _measure_way;}
}
/// <summary>
///
/// </summary>
public string is_fill_meter
{
set{ _is_fill_meter=value;}
get{return _is_fill_meter;}
}
/// <summary>
///
/// </summary>
public string measure_info
{
set{ _measure_info=value;}
get{return _measure_info;}
}
/// <summary>
///
/// </summary>
public string power_factor_type
{
set{ _power_factor_type=value;}
get{return _power_factor_type;}
}
/// <summary>
///
/// </summary>
public string voltage_level
{
set{ _voltage_level=value;}
get{return _voltage_level;}
}
/// <summary>
///
/// </summary>
public string inline_type
{
set{ _inline_type=value;}
get{return _inline_type;}
}
/// <summary>
///
/// </summary>
public string is_stop_power
{
set{ _is_stop_power=value;}
get{return _is_stop_power;}
}
/// <summary>
///
/// </summary>
public string main_use
{
set{ _main_use=value;}
get{return _main_use;}
}
/// <summary>
///
/// </summary>
public string measure_type
{
set{ _measure_type=value;}
get{return _measure_type;}
}
/// <summary>
///
/// </summary>
public string measure_nature
{
set{ _measure_nature=value;}
get{return _measure_nature;}
}
/// <summary>
///
/// </summary>
public string device_type
{
set{ _device_type=value;}
get{return _device_type;}
}
/// <summary>
///
/// </summary>
public string own_side
{
set{ _own_side=value;}
get{return _own_side;}
}
/// <summary>
///
/// </summary>
public string shop_attrtype
{
set{ _shop_attrtype=value;}
get{return _shop_attrtype;}
}
/// <summary>
///
/// </summary>
public string agent_price
{
set{ _agent_price=value;}
get{return _agent_price;}
}
/// <summary>
///
/// </summary>
public string station_info
{
set{ _station_info=value;}
get{return _station_info;}
}
/// <summary>
///
/// </summary>
public string price_calc_way
{
set{ _price_calc_way=value;}
get{return _price_calc_way;}
}
/// <summary>
///
/// </summary>
public string power_factor_stand
{
set{ _power_factor_stand=value;}
get{return _power_factor_stand;}
}
/// <summary>
///
/// </summary>
public string rate_reduce_flag
{
set{ _rate_reduce_flag=value;}
get{return _rate_reduce_flag;}
}
/// <summary>
///
/// </summary>
public string rate_value
{
set{ _rate_value=value;}
get{return _rate_value;}
}
/// <summary>
///
/// </summary>
public string exec_order
{
set{ _exec_order=value;}
get{return _exec_order;}
}
/// <summary>
///
/// </summary>
public string is_peak_flag
{
set{ _is_peak_flag=value;}
get{return _is_peak_flag;}
}
/// <summary>
///
/// </summary>
public string fee_hangye_type
{
set{ _fee_hangye_type=value;}
get{return _fee_hangye_type;}
}
/// <summary>
///
/// </summary>
public string exec_price
{
set{ _exec_price=value;}
get{return _exec_price;}
}
/// <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
}
}