106 lines
2.5 KiB
C#
106 lines
2.5 KiB
C#
/** 版本信息模板在安装目录下,可自行修改。
|
|
* iot_function_code_config.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: iot_function_code_config
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2025/6/6 13:58:11 N/A 初版
|
|
*
|
|
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
|
*┌──────────────────────────────────┐
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
|
|
*│ 版权所有:动软卓越(北京)科技有限公司 │
|
|
*└──────────────────────────────────┘
|
|
*/
|
|
using System;
|
|
namespace Gather.Mysql.Model
|
|
{
|
|
/// <summary>
|
|
/// iot_function_code_config:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class iot_function_code_config
|
|
{
|
|
public iot_function_code_config()
|
|
{}
|
|
#region Model
|
|
private long _id;
|
|
private string _function_code;
|
|
private string _start_address_from_zero;
|
|
private string _is_del;
|
|
private string _creat_by;
|
|
private DateTime? _creat_time;
|
|
private string _update_by;
|
|
private DateTime? _update_time;
|
|
/// <summary>
|
|
/// auto_increment
|
|
/// </summary>
|
|
public long id
|
|
{
|
|
set{ _id=value;}
|
|
get{return _id;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string function_code
|
|
{
|
|
set{ _function_code=value;}
|
|
get{return _function_code;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string start_address_from_zero
|
|
{
|
|
set{ _start_address_from_zero=value;}
|
|
get{return _start_address_from_zero;}
|
|
}
|
|
/// <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
|
|
|
|
}
|
|
}
|
|
|