/** 版本信息模板在安装目录下,可自行修改。 * 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 { /// /// iot_plc_pt:实体类(属性说明自动提取数据库字段的描述信息) /// [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; /// /// auto_increment /// public int id { set{ _id=value;} get{return _id;} } /// /// /// public long? pt_device_id { set{ _pt_device_id=value;} get{return _pt_device_id;} } /// /// /// public string pt_name { set{ _pt_name=value;} get{return _pt_name;} } /// /// /// public string pt_english { set{ _pt_english=value;} get{return _pt_english;} } /// /// /// public string pt_relate_english { set{ _pt_relate_english=value;} get{return _pt_relate_english;} } /// /// /// public string pt_value { set{ _pt_value=value;} get{return _pt_value;} } /// /// /// public string pt_function { set{ _pt_function=value;} get{return _pt_function;} } /// /// /// public string pt_pattern { set{ _pt_pattern=value;} get{return _pt_pattern;} } /// /// /// public string pt_unit { set{ _pt_unit=value;} get{return _pt_unit;} } /// /// /// public int? pt_sort { set{ _pt_sort=value;} get{return _pt_sort;} } /// /// /// public string pt_is_bit_read { set{ _pt_is_bit_read=value;} get{return _pt_is_bit_read;} } /// /// /// public string pt_bit_index { set{ _pt_bit_index=value;} get{return _pt_bit_index;} } /// /// /// public string pt_fault_point { set{ _pt_fault_point=value;} get{return _pt_fault_point;} } /// /// /// public string pt_alarm_point { set{ _pt_alarm_point=value;} get{return _pt_alarm_point;} } /// /// /// public string pt_max_value { set{ _pt_max_value=value;} get{return _pt_max_value;} } /// /// /// public string pt_min_value { set{ _pt_min_value=value;} get{return _pt_min_value;} } /// /// /// public string pt_range { set{ _pt_range=value;} get{return _pt_range;} } /// /// /// public string pt_data_type { set{ _pt_data_type=value;} get{return _pt_data_type;} } /// /// /// public string pt_byte_order { set{ _pt_byte_order=value;} get{return _pt_byte_order;} } /// /// /// public string pt_magnification_ratio { set{ _pt_magnification_ratio=value;} get{return _pt_magnification_ratio;} } /// /// /// public string is_del { set{ _is_del=value;} get{return _is_del;} } /// /// /// public string creat_by { set{ _creat_by=value;} get{return _creat_by;} } /// /// /// public DateTime? creat_time { set{ _creat_time=value;} get{return _creat_time;} } /// /// /// public string update_by { set{ _update_by=value;} get{return _update_by;} } /// /// /// public DateTime? update_time { set{ _update_time=value;} get{return _update_time;} } #endregion Model } }