259 lines
5.1 KiB
C#
259 lines
5.1 KiB
C#
/** 版本信息模板在安装目录下,可自行修改。
|
|
* iot_plc_pt.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: iot_plc_pt
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2025/6/14 9:40:01 N/A 初版
|
|
*
|
|
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
|
*┌──────────────────────────────────┐
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
|
|
*│ 版权所有:动软卓越(北京)科技有限公司 │
|
|
*└──────────────────────────────────┘
|
|
*/
|
|
using System;
|
|
namespace Gather.Mysql.Model
|
|
{
|
|
/// <summary>
|
|
/// iot_plc_pt:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class iot_plc_pt
|
|
{
|
|
public iot_plc_pt()
|
|
{}
|
|
#region Model
|
|
private int _id;
|
|
private long? _pt_device_id;
|
|
private string _pt_name;
|
|
private string _pt_english;
|
|
private string _pt_relate_english;
|
|
private string _pt_value;
|
|
private string _pt_function;
|
|
private string _pt_pattern;
|
|
private string _pt_unit;
|
|
private int? _pt_sort;
|
|
private string _pt_is_bit_read;
|
|
private string _pt_bit_index;
|
|
private string _pt_fault_point;
|
|
private string _pt_alarm_point;
|
|
private string _pt_max_value;
|
|
private string _pt_min_value;
|
|
private string _pt_range;
|
|
private string _pt_data_type;
|
|
private string _pt_byte_order;
|
|
private string _pt_magnification_ratio;
|
|
private string _is_del= "0";
|
|
private string _creat_by;
|
|
private DateTime? _creat_time;
|
|
private string _update_by;
|
|
private DateTime? _update_time;
|
|
/// <summary>
|
|
/// auto_increment
|
|
/// </summary>
|
|
public int id
|
|
{
|
|
set{ _id=value;}
|
|
get{return _id;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public long? pt_device_id
|
|
{
|
|
set{ _pt_device_id=value;}
|
|
get{return _pt_device_id;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_name
|
|
{
|
|
set{ _pt_name=value;}
|
|
get{return _pt_name;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_english
|
|
{
|
|
set{ _pt_english=value;}
|
|
get{return _pt_english;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_relate_english
|
|
{
|
|
set{ _pt_relate_english=value;}
|
|
get{return _pt_relate_english;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_value
|
|
{
|
|
set{ _pt_value=value;}
|
|
get{return _pt_value;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_function
|
|
{
|
|
set{ _pt_function=value;}
|
|
get{return _pt_function;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_pattern
|
|
{
|
|
set{ _pt_pattern=value;}
|
|
get{return _pt_pattern;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_unit
|
|
{
|
|
set{ _pt_unit=value;}
|
|
get{return _pt_unit;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? pt_sort
|
|
{
|
|
set{ _pt_sort=value;}
|
|
get{return _pt_sort;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_is_bit_read
|
|
{
|
|
set{ _pt_is_bit_read=value;}
|
|
get{return _pt_is_bit_read;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_bit_index
|
|
{
|
|
set{ _pt_bit_index=value;}
|
|
get{return _pt_bit_index;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_fault_point
|
|
{
|
|
set{ _pt_fault_point=value;}
|
|
get{return _pt_fault_point;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_alarm_point
|
|
{
|
|
set{ _pt_alarm_point=value;}
|
|
get{return _pt_alarm_point;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_max_value
|
|
{
|
|
set{ _pt_max_value=value;}
|
|
get{return _pt_max_value;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_min_value
|
|
{
|
|
set{ _pt_min_value=value;}
|
|
get{return _pt_min_value;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_range
|
|
{
|
|
set{ _pt_range=value;}
|
|
get{return _pt_range;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_data_type
|
|
{
|
|
set{ _pt_data_type=value;}
|
|
get{return _pt_data_type;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_byte_order
|
|
{
|
|
set{ _pt_byte_order=value;}
|
|
get{return _pt_byte_order;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string pt_magnification_ratio
|
|
{
|
|
set{ _pt_magnification_ratio=value;}
|
|
get{return _pt_magnification_ratio;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string is_del
|
|
{
|
|
set{ _is_del=value;}
|
|
get{return _is_del;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string creat_by
|
|
{
|
|
set{ _creat_by=value;}
|
|
get{return _creat_by;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? creat_time
|
|
{
|
|
set{ _creat_time=value;}
|
|
get{return _creat_time;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string update_by
|
|
{
|
|
set{ _update_by=value;}
|
|
get{return _update_by;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? update_time
|
|
{
|
|
set{ _update_time=value;}
|
|
get{return _update_time;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|