SuZhouZhanFang/suzhou-iot-service/Gather.Mysql/Model/iot_device.cs

241 lines
4.8 KiB
C#

/** 版本信息模板在安装目录下,可自行修改。
* 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
{
/// <summary>
/// iot_device:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[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;
/// <summary>
/// auto_increment
/// </summary>
public long id
{
set{ _id=value;}
get{return _id;}
}
/// <summary>
///
/// </summary>
public string device_no_host
{
set{ _device_no_host=value;}
get{return _device_no_host;}
}
/// <summary>
///
/// </summary>
public string device_no_follow
{
set{ _device_no_follow=value;}
get{return _device_no_follow;}
}
/// <summary>
///
/// </summary>
public string device_name
{
set{ _device_name=value;}
get{return _device_name;}
}
/// <summary>
///
/// </summary>
public long? device_type_id
{
set{ _device_type_id=value;}
get{return _device_type_id;}
}
/// <summary>
///
/// </summary>
public long region_id
{
set{ _region_id=value;}
get{return _region_id;}
}
/// <summary>
///
/// </summary>
public string server_model
{
set{ _server_model=value;}
get{return _server_model;}
}
/// <summary>
///
/// </summary>
public string service_ip
{
set{ _service_ip=value;}
get{return _service_ip;}
}
/// <summary>
///
/// </summary>
public string service_port
{
set{ _service_port=value;}
get{return _service_port;}
}
/// <summary>
///
/// </summary>
public string station
{
set{ _station=value;}
get{return _station;}
}
/// <summary>
///
/// </summary>
public string remark
{
set{ _remark=value;}
get{return _remark;}
}
/// <summary>
///
/// </summary>
public double? coordinate_x
{
set{ _coordinate_x=value;}
get{return _coordinate_x;}
}
/// <summary>
///
/// </summary>
public double? coordinate_y
{
set{ _coordinate_y=value;}
get{return _coordinate_y;}
}
/// <summary>
///
/// </summary>
public double? coordinate_z
{
set{ _coordinate_z=value;}
get{return _coordinate_z;}
}
/// <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;}
}
/// <summary>
///
/// </summary>
public int panel_type
{
set{ _panel_type=value;}
get{return _panel_type;}
}
/// <summary>
///
/// </summary>
public DateTime? manual_control_time
{
set{ _manual_control_time=value;}
get{return _manual_control_time;}
}
/// <summary>
///
/// </summary>
public string acquisition_frequency
{
set{ _acquisition_frequency=value;}
get{return _acquisition_frequency;}
}
/// <summary>
///
/// </summary>
public int? sort
{
set{ _sort=value;}
get{return _sort;}
}
#endregion Model
}
}