22 rader
611 B
C#
22 rader
611 B
C#
|
// ********************************************************************************
|
|||
|
// 文件名字: S7F6Item
|
|||
|
// 文件描述: S7F6Item
|
|||
|
// 开发人员: Michael
|
|||
|
// 创建时间: 2019/11/8 0:08
|
|||
|
//
|
|||
|
// 更新历史:
|
|||
|
// + 创建 S7F6Item.cs 文件. by Michael @2019/11/8 0:08
|
|||
|
// ********************************************************************************
|
|||
|
|
|||
|
using Glorysoft.SECS.EQP.Common;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace Glorysoft.SECS.EQP.Message
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class S7F6Item : BaseMessage
|
|||
|
{
|
|||
|
public string PPID { get; set; }
|
|||
|
public byte[] PPBODY { get; set; }
|
|||
|
}
|
|||
|
}
|