/** 版本信息模板在安装目录下,可自行修改。 * iot_device.cs * * 功 能: N/A * 类 名: iot_device * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2025/6/6 9:48:17 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace Gather.Mysql.Model { /// /// iot_device:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class iot_device { public iot_device() {} #region Model private long _id; private string _device_no_host; private string _device_no_follow; private string _device_name; private long? _device_type_id; private long _region_id; private string _server_model; private string _service_ip; private string _service_port; private string _station; private string _remark= "0"; private double? _coordinate_x=0; private double? _coordinate_y=0; private double? _coordinate_z=0; private string _is_del= "0"; private string _creat_by; private DateTime? _creat_time; private string _update_by; private DateTime? _update_time; private int _panel_type; private DateTime? _manual_control_time; private string _acquisition_frequency; private int? _sort; /// /// auto_increment /// public long id { set{ _id=value;} get{return _id;} } /// /// /// public string device_no_host { set{ _device_no_host=value;} get{return _device_no_host;} } /// /// /// public string device_no_follow { set{ _device_no_follow=value;} get{return _device_no_follow;} } /// /// /// public string device_name { set{ _device_name=value;} get{return _device_name;} } /// /// /// public long? device_type_id { set{ _device_type_id=value;} get{return _device_type_id;} } /// /// /// public long region_id { set{ _region_id=value;} get{return _region_id;} } /// /// /// public string server_model { set{ _server_model=value;} get{return _server_model;} } /// /// /// public string service_ip { set{ _service_ip=value;} get{return _service_ip;} } /// /// /// public string service_port { set{ _service_port=value;} get{return _service_port;} } /// /// /// public string station { set{ _station=value;} get{return _station;} } /// /// /// public string remark { set{ _remark=value;} get{return _remark;} } /// /// /// public double? coordinate_x { set{ _coordinate_x=value;} get{return _coordinate_x;} } /// /// /// public double? coordinate_y { set{ _coordinate_y=value;} get{return _coordinate_y;} } /// /// /// public double? coordinate_z { set{ _coordinate_z=value;} get{return _coordinate_z;} } /// /// /// 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;} } /// /// /// public int panel_type { set{ _panel_type=value;} get{return _panel_type;} } /// /// /// public DateTime? manual_control_time { set{ _manual_control_time=value;} get{return _manual_control_time;} } /// /// /// public string acquisition_frequency { set{ _acquisition_frequency=value;} get{return _acquisition_frequency;} } /// /// /// public int? sort { set{ _sort=value;} get{return _sort;} } #endregion Model } }