33 lines
942 B
C#
33 lines
942 B
C#
// ********************************************************************************
|
|
// 文件名字: S2F49Item
|
|
// 文件描述: S2F49Item
|
|
// 开发人员: Hupe
|
|
// 创建时间: 2021/11/2 0:08
|
|
//
|
|
// 更新历史:
|
|
// + 创建 S2F49Item.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 S2F49Item : BaseMessage
|
|
{
|
|
public ushort DATAID { get; set; }
|
|
public string OBJSPEC { get; set; }
|
|
public string RCMD { get; set; }
|
|
public List<Param> PARAMS { get; set; }
|
|
|
|
public S2F49Item() => PARAMS = new List<Param>();
|
|
}
|
|
|
|
[Serializable]
|
|
public class Param
|
|
{
|
|
public string ParanName { get; set; }
|
|
public string ParanVal { get; set; }
|
|
}
|
|
} |