282 lines
6.9 KiB
C#
282 lines
6.9 KiB
C#
/** 版本信息模板在安装目录下,可自行修改。
|
|
* water_data.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: water_data
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2023/2/26 20:48:51 N/A 初版
|
|
*
|
|
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
|
*┌──────────────────────────────────┐
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
|
|
*│ 版权所有:动软卓越(北京)科技有限公司 │
|
|
*└──────────────────────────────────┘
|
|
*/
|
|
using System;
|
|
namespace DataService.Model
|
|
{
|
|
/// <summary>
|
|
/// water_data:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class water_data
|
|
{
|
|
public water_data()
|
|
{}
|
|
#region Model
|
|
private string _water_id;
|
|
private string _stop_number;
|
|
private string _phenotype;
|
|
private string _client_address;
|
|
private string _version_number;
|
|
private decimal? _instantaneous_delivery;
|
|
private string _transient_flow_symbol;
|
|
private decimal? _integrated_flux;
|
|
private decimal? _cumulative_running_time;
|
|
private decimal? _positive_cumulative_traffic;
|
|
private decimal? _positive_cumulative_run_time;
|
|
private decimal? _negative_cumulative_traffic;
|
|
private decimal? _negative_cumulative_running_time;
|
|
private decimal? _water_temperature;
|
|
private decimal? _cell_voltage;
|
|
private decimal? _caliber;
|
|
private decimal? _range;
|
|
private string _fault_code;
|
|
private string _alarm_code;
|
|
private DateTime? _acquisition_time;
|
|
private string _diagnostic_code;
|
|
private string _is_the_data_valid;
|
|
private DateTime? _create_time;
|
|
private string _r1;
|
|
private string _r2;
|
|
private string _r3;
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public string water_id
|
|
{
|
|
set{ _water_id=value;}
|
|
get{return _water_id;}
|
|
}
|
|
/// <summary>
|
|
/// 站号
|
|
/// </summary>
|
|
public string stop_number
|
|
{
|
|
set{ _stop_number=value;}
|
|
get{return _stop_number;}
|
|
}
|
|
/// <summary>
|
|
/// 表型
|
|
/// </summary>
|
|
public string phenotype
|
|
{
|
|
set{ _phenotype=value;}
|
|
get{return _phenotype;}
|
|
}
|
|
/// <summary>
|
|
/// 客户端地址A
|
|
/// </summary>
|
|
public string client_address
|
|
{
|
|
set{ _client_address=value;}
|
|
get{return _client_address;}
|
|
}
|
|
/// <summary>
|
|
/// 版本号
|
|
/// </summary>
|
|
public string version_number
|
|
{
|
|
set{ _version_number=value;}
|
|
get{return _version_number;}
|
|
}
|
|
/// <summary>
|
|
/// 瞬时流量
|
|
/// </summary>
|
|
public decimal? instantaneous_delivery
|
|
{
|
|
set{ _instantaneous_delivery=value;}
|
|
get{return _instantaneous_delivery;}
|
|
}
|
|
/// <summary>
|
|
/// 瞬时流量符号
|
|
/// </summary>
|
|
public string transient_flow_symbol
|
|
{
|
|
set{ _transient_flow_symbol=value;}
|
|
get{return _transient_flow_symbol;}
|
|
}
|
|
/// <summary>
|
|
/// 累积流量
|
|
/// </summary>
|
|
public decimal? integrated_flux
|
|
{
|
|
set { _integrated_flux = value; }
|
|
get { return _integrated_flux; }
|
|
}
|
|
/// <summary>
|
|
/// 累积运行时间
|
|
/// </summary>
|
|
public decimal? cumulative_running_time
|
|
{
|
|
set{ _cumulative_running_time=value;}
|
|
get{return _cumulative_running_time;}
|
|
}
|
|
/// <summary>
|
|
/// 正累积流量
|
|
/// </summary>
|
|
public decimal? positive_cumulative_traffic
|
|
{
|
|
set{ _positive_cumulative_traffic=value;}
|
|
get{return _positive_cumulative_traffic;}
|
|
}
|
|
/// <summary>
|
|
/// 正累积运行时间
|
|
/// </summary>
|
|
public decimal? positive_cumulative_run_time
|
|
{
|
|
set{ _positive_cumulative_run_time=value;}
|
|
get{return _positive_cumulative_run_time;}
|
|
}
|
|
/// <summary>
|
|
/// 负累积流量
|
|
/// </summary>
|
|
public decimal? negative_cumulative_traffic
|
|
{
|
|
set{ _negative_cumulative_traffic=value;}
|
|
get{return _negative_cumulative_traffic;}
|
|
}
|
|
/// <summary>
|
|
/// 负累积运行时间
|
|
/// </summary>
|
|
public decimal? negative_cumulative_running_time
|
|
{
|
|
set{ _negative_cumulative_running_time=value;}
|
|
get{return _negative_cumulative_running_time;}
|
|
}
|
|
/// <summary>
|
|
/// 水温
|
|
/// </summary>
|
|
public decimal? water_temperature
|
|
{
|
|
set{ _water_temperature=value;}
|
|
get{return _water_temperature;}
|
|
}
|
|
/// <summary>
|
|
/// 电池电压
|
|
/// </summary>
|
|
public decimal? cell_voltage
|
|
{
|
|
set{ _cell_voltage=value;}
|
|
get{return _cell_voltage;}
|
|
}
|
|
/// <summary>
|
|
/// 管径
|
|
/// </summary>
|
|
public decimal? caliber
|
|
{
|
|
set{ _caliber=value;}
|
|
get{return _caliber;}
|
|
}
|
|
/// <summary>
|
|
/// 量程
|
|
/// </summary>
|
|
public decimal? range
|
|
{
|
|
set{ _range=value;}
|
|
get{return _range;}
|
|
}
|
|
/// <summary>
|
|
/// 故障代码
|
|
/// </summary>
|
|
public string fault_code
|
|
{
|
|
set{ _fault_code=value;}
|
|
get{return _fault_code;}
|
|
}
|
|
/// <summary>
|
|
/// 报警码
|
|
/// </summary>
|
|
public string alarm_code
|
|
{
|
|
set{ _alarm_code=value;}
|
|
get{return _alarm_code;}
|
|
}
|
|
/// <summary>
|
|
/// 采集时间
|
|
/// </summary>
|
|
public DateTime? acquisition_time
|
|
{
|
|
set{ _acquisition_time=value;}
|
|
get{return _acquisition_time;}
|
|
}
|
|
/// <summary>
|
|
/// 采集时间
|
|
/// </summary>
|
|
public string diagnostic_code
|
|
{
|
|
set{ _diagnostic_code=value;}
|
|
get{return _diagnostic_code;}
|
|
}
|
|
/// <summary>
|
|
/// 数据是否有效
|
|
/// </summary>
|
|
public string is_the_data_valid
|
|
{
|
|
set{ _is_the_data_valid=value;}
|
|
get{return _is_the_data_valid;}
|
|
}
|
|
/// <summary>
|
|
/// 创建日期
|
|
/// </summary>
|
|
public DateTime? create_time
|
|
{
|
|
set{ _create_time=value;}
|
|
get{return _create_time;}
|
|
}
|
|
/// <summary>
|
|
/// 备用1
|
|
/// </summary>
|
|
public string r1
|
|
{
|
|
set{ _r1=value;}
|
|
get{return _r1;}
|
|
}
|
|
/// <summary>
|
|
/// 备用2
|
|
/// </summary>
|
|
public string r2
|
|
{
|
|
set{ _r2=value;}
|
|
get{return _r2;}
|
|
}
|
|
/// <summary>
|
|
/// 备用3
|
|
/// </summary>
|
|
public string r3
|
|
{
|
|
set{ _r3=value;}
|
|
get{return _r3;}
|
|
}
|
|
/// <summary>
|
|
/// 通过验证
|
|
/// </summary>
|
|
public bool IsValid
|
|
{
|
|
get;set;
|
|
}
|
|
/// <summary>
|
|
/// 采集时间(字符串)
|
|
/// </summary>
|
|
public string acquisition_timeA
|
|
{
|
|
get;set;
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|