36 lines
897 B
C#
36 lines
897 B
C#
|
// ********************************************************************************
|
|||
|
// 文件名字: S2F15Item
|
|||
|
// 文件描述: S2F15Item
|
|||
|
// 开发人员: Michael
|
|||
|
// 创建时间: 2019/11/8 0:08
|
|||
|
//
|
|||
|
// 更新历史:
|
|||
|
// + 创建 S2F15Item.cs 文件. by Michael @2019/11/8 0:08
|
|||
|
// ********************************************************************************
|
|||
|
using Glorysoft.SECS.EQP.Common;
|
|||
|
using Glorysoft.SECSwell;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Glorysoft.SECS.EQP.Message
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class S2F15Item : BaseMessage
|
|||
|
{
|
|||
|
public List<EC> ECs { get; set; }
|
|||
|
|
|||
|
public S2F15Item()
|
|||
|
{
|
|||
|
ECs = new List<EC>();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
[Serializable]
|
|||
|
public class EC
|
|||
|
{
|
|||
|
public uint ECID { get; set; }
|
|||
|
public object ECV { get; set; }
|
|||
|
|
|||
|
public eSECS_FORMAT ECV_Type { get; set; }
|
|||
|
}
|
|||
|
}
|