You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.4 KiB
C#
65 lines
1.4 KiB
C#
using System;
|
|
namespace Model
|
|
{
|
|
/// <summary>
|
|
/// GANTRY_NOTIFY_LOG:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class GANTRY_NOTIFY_LOG_JSON
|
|
{
|
|
public GANTRY_NOTIFY_LOG_JSON()
|
|
{ }
|
|
#region Model
|
|
private string _msgid;
|
|
private string _msgtime;
|
|
private string _gantryid;
|
|
private string _logdate;
|
|
private int _logtype;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string msgId
|
|
{
|
|
set { _msgid = value; }
|
|
get { return _msgid; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string msgTime
|
|
{
|
|
set { _msgtime = value; }
|
|
get { return _msgtime; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string gantryId
|
|
{
|
|
set { _gantryid = value; }
|
|
get { return _gantryid; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string logDate
|
|
{
|
|
set { _logdate = value; }
|
|
get { return _logdate; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int logType
|
|
{
|
|
set { _logtype = value; }
|
|
get { return _logtype; }
|
|
}
|
|
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|