33 lines
909 B
C#
33 lines
909 B
C#
// ********************************************************************************
|
|
// 文件名字: S2F35Item
|
|
// 文件描述: S2F35Item
|
|
// 开发人员: Michael
|
|
// 创建时间: 2019/11/8 0:08
|
|
//
|
|
// 更新历史:
|
|
// + 创建 S2F35Item.cs 文件. by Michael @2019/11/8 0:08
|
|
// ********************************************************************************
|
|
using Glorysoft.SECS.EQP.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Glorysoft.SECS.EQP.Message
|
|
{
|
|
[Serializable]
|
|
public class S2F35Item : BaseMessage
|
|
{
|
|
public ushort DATAID { get; set; }
|
|
public List<Event> Events { get; set; }
|
|
|
|
public S2F35Item() => Events = new List<Event>();
|
|
}
|
|
|
|
[Serializable]
|
|
public class Event
|
|
{
|
|
public uint CEID { get; set; }
|
|
public List<uint> RPTIDs { get; set; }
|
|
|
|
public Event() => RPTIDs = new List<uint>();
|
|
}
|
|
} |