gyhlw_dotnet/网站项目/DataService/Digital/Model/digital_alert.cs

124 lines
2.6 KiB
C#

/** 版本信息模板在安装目录下,可自行修改。
* digital_alert.cs
*
* 功 能: N/A
* 类 名: digital_alert
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
* V0.01 2021/4/13 20:50:14 N/A 初版
*
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
*│ 版权所有:动软卓越(北京)科技有限公司              │
*└──────────────────────────────────┘
*/
using System;
namespace DataService.Model
{
/// <summary>
/// digital_alert:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class digital_alert
{
public digital_alert()
{}
#region Model
private int _alertid;
private string _alerttype;
private string _alertmode;
private string _content;
private DateTime? _alerttime;
private string _remark1;
private string _remark2;
private string _remark3;
private string _remark4;
private string _remark5;
/// <summary>
/// auto_increment
/// </summary>
public int AlertId
{
set{ _alertid=value;}
get{return _alertid;}
}
/// <summary>
///
/// </summary>
public string AlertType
{
set{ _alerttype=value;}
get{return _alerttype;}
}
/// <summary>
///
/// </summary>
public string AlertMode
{
set{ _alertmode=value;}
get{return _alertmode;}
}
/// <summary>
///
/// </summary>
public string Content
{
set{ _content=value;}
get{return _content;}
}
/// <summary>
///
/// </summary>
public DateTime? AlertTime
{
set{ _alerttime=value;}
get{return _alerttime;}
}
/// <summary>
///
/// </summary>
public string Remark1
{
set{ _remark1=value;}
get{return _remark1;}
}
/// <summary>
///
/// </summary>
public string Remark2
{
set{ _remark2=value;}
get{return _remark2;}
}
/// <summary>
///
/// </summary>
public string Remark3
{
set{ _remark3=value;}
get{return _remark3;}
}
/// <summary>
///
/// </summary>
public string Remark4
{
set{ _remark4=value;}
get{return _remark4;}
}
/// <summary>
///
/// </summary>
public string Remark5
{
set{ _remark5=value;}
get{return _remark5;}
}
#endregion Model
}
}