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.
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Model
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// GANTRY_NOTIFY_HOURSUM:实体类(属性说明自动提取数据库字段的描述信息)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
|
public partial class GANTRY_NOTIFY_HOURSUM_JSON
|
|
|
|
|
|
{
|
|
|
|
|
|
public GANTRY_NOTIFY_HOURSUM_JSON()
|
|
|
|
|
|
{
|
|
|
|
|
|
collectHourBatchList = new List<HourBatch>();
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
#region Model
|
|
|
|
|
|
private string _msgid;
|
|
|
|
|
|
private string _msgtime;
|
|
|
|
|
|
private string _gantryid;
|
|
|
|
|
|
private string _collecttype;
|
|
|
|
|
|
private List<HourBatch> _collecthourbatchlist;
|
|
|
|
|
|
|
|
|
|
|
|
/// <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 collectType
|
|
|
|
|
|
{
|
|
|
|
|
|
set { _collecttype = value; }
|
|
|
|
|
|
get { return _collecttype; }
|
|
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
///
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public List<HourBatch> collectHourBatchList
|
|
|
|
|
|
{
|
|
|
|
|
|
set { _collecthourbatchlist = value; }
|
|
|
|
|
|
get { return _collecthourbatchlist; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion Model
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class HourBatch {
|
|
|
|
|
|
|
|
|
|
|
|
public HourBatch(string id) {
|
|
|
|
|
|
collectHourBatch = id;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
public string collectHourBatch { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|