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.

108 lines
2.3 KiB
C#

using System;
using System.Collections.Generic;
namespace Model
{
/// <summary>
/// GANTRY_NOTIFY_VIU:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class GANTRY_NOTIFY_VIU_JSON
{
public GANTRY_NOTIFY_VIU_JSON()
{
picIdList = new List<IDS>();
}
#region Model
private string _msgid;
private string _msgtime;
private string _gantryid;
private int _notifytype;
private string _starttime;
private string _endtime;
private string _hourbatchno;
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 int notifyType
{
set { _notifytype = value; }
get { return _notifytype; }
}
/// <summary>
///
/// </summary>
public string startTime
{
set { _starttime = value; }
get { return _starttime; }
}
/// <summary>
///
/// </summary>
public string endTime
{
set { _endtime = value; }
get { return _endtime; }
}
/// <summary>
///
/// </summary>
public string hourBatchNo
{
set { _hourbatchno = value; }
get { return _hourbatchno; }
}
/// <summary>
///
/// </summary>
public List<IDS> picIdList
{
set { _picidlist = value; }
get { return _picidlist; }
}
#endregion Model
}
public class IDS {
public string picId { get; set; }
public IDS(string ids) {
picId = ids;
}
}
}