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.
60 lines
1.3 KiB
C#
60 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Model
|
|
{
|
|
/// <summary>
|
|
/// GANTRY_NOTIFY_VIPU:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class GANTRY_NOTIFY_VIPU_JSON
|
|
{
|
|
public GANTRY_NOTIFY_VIPU_JSON()
|
|
{
|
|
_picidlist = new List<IDS>();
|
|
}
|
|
#region Model
|
|
private string _msgid;
|
|
private string _msgtime;
|
|
private string _gantryid;
|
|
private List<IDS>_picidlist;
|
|
|
|
/// <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 List<IDS> picIdList
|
|
{
|
|
set { _picidlist = value; }
|
|
get { return _picidlist; }
|
|
}
|
|
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|