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.
114 lines
2.6 KiB
C#
114 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Model
|
|
{
|
|
/// <summary>
|
|
/// GANTRY_NOTIFY_ETCT:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class GANTRY_NOTIFY_ETCT_JSON
|
|
{
|
|
public GANTRY_NOTIFY_ETCT_JSON()
|
|
{
|
|
tradeIdList = new List<Model.Trade>();
|
|
}
|
|
#region Model
|
|
private string _msgid;
|
|
private string _msgtime;
|
|
private string _gantryid;
|
|
private int _computerorder;
|
|
private int _notifytype;
|
|
private string _starttime;
|
|
private string _endtime;
|
|
private string _hourbatchno;
|
|
private List<Trade> _tradeidlist;
|
|
|
|
/// <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 computerOrder
|
|
{
|
|
set { _computerorder = value; }
|
|
get { return _computerorder; }
|
|
}
|
|
/// <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<Trade> tradeIdList
|
|
{
|
|
set { _tradeidlist = value; }
|
|
get { return _tradeidlist; }
|
|
}
|
|
|
|
#endregion Model
|
|
|
|
}
|
|
|
|
public class Trade {
|
|
public string tradeId { get; set; }
|
|
|
|
public Trade(string id) {
|
|
tradeId = id;
|
|
}
|
|
}
|
|
|
|
}
|
|
|