EAP
This commit is contained in:
20
Message/S1F13Item.cs
Normal file
20
Message/S1F13Item.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S1F13Item
|
||||
// 文件描述: S1F13Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S1F13Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S1F13Item : BaseMessage
|
||||
{
|
||||
}
|
||||
}
|
||||
23
Message/S1F14Item.cs
Normal file
23
Message/S1F14Item.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S1F14Item
|
||||
// 文件描述: S1F14Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S1F14Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S1F14Item : BaseMessage
|
||||
{
|
||||
public byte COMMACK { get; set; }
|
||||
public string MDLN { get; set; }
|
||||
public string SOFTREV { get; set; }
|
||||
}
|
||||
}
|
||||
20
Message/S1F1Item.cs
Normal file
20
Message/S1F1Item.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S1F1Item
|
||||
// 文件描述: S1F1Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S1F1Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S1F1Item : BaseMessage
|
||||
{
|
||||
}
|
||||
}
|
||||
22
Message/S1F2Item.cs
Normal file
22
Message/S1F2Item.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S1F2Item
|
||||
// 文件描述: S1F2Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S1F2Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S1F2Item : BaseMessage
|
||||
{
|
||||
public string MDLN { get; set; }
|
||||
public string SOFTREV { get; set; }
|
||||
}
|
||||
}
|
||||
26
Message/S1F3Item.cs
Normal file
26
Message/S1F3Item.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S1F3Item
|
||||
// 文件描述: S1F3Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S1F3Item.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 S1F3Item : BaseMessage
|
||||
{
|
||||
public List<ushort> SVIDs { get; set; }
|
||||
|
||||
public S1F3Item()
|
||||
{
|
||||
SVIDs = new List<ushort>();
|
||||
}
|
||||
}
|
||||
}
|
||||
23
Message/S1F4Item.cs
Normal file
23
Message/S1F4Item.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S1F4Item
|
||||
// 文件描述: S1F4Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S1F4Item.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 S1F4Item : BaseMessage
|
||||
{
|
||||
public List<object> SVs { get; set; }
|
||||
|
||||
public S1F4Item() => SVs = new List<object>();
|
||||
}
|
||||
}
|
||||
36
Message/S2F15Item.cs
Normal file
36
Message/S2F15Item.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: 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; }
|
||||
}
|
||||
}
|
||||
20
Message/S2F16Item.cs
Normal file
20
Message/S2F16Item.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F16Item
|
||||
// 文件描述: S2F16Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F16Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S2F16Item : BaseMessage
|
||||
{
|
||||
public byte EAC { get; set; }
|
||||
}
|
||||
}
|
||||
26
Message/S2F23Item.cs
Normal file
26
Message/S2F23Item.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F23Item
|
||||
// 文件描述: S2F23Item
|
||||
// 开发人员: Hupe
|
||||
// 创建时间: 2021/04/16 11:19
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F23Item.cs 文件. by Hupe @2021/04/16 11:19
|
||||
// ********************************************************************************
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S2F23Item : BaseMessage
|
||||
{
|
||||
public ushort TRID { get; set; }
|
||||
public string DSPER_hhmmss { get; set; }
|
||||
public ushort TOTSMP { get; set; }
|
||||
public ushort REPGSZ { get; set; }
|
||||
public List<ushort> SVID { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
21
Message/S2F31Item.cs
Normal file
21
Message/S2F31Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F31Item
|
||||
// 文件描述: S2F31Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F31Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S2F31Item : BaseMessage
|
||||
{
|
||||
public string TIME { get; set; }
|
||||
}
|
||||
}
|
||||
21
Message/S2F32Item.cs
Normal file
21
Message/S2F32Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F32Item
|
||||
// 文件描述: S2F32Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F32Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S2F32Item : BaseMessage
|
||||
{
|
||||
public byte TIACK { get; set; }
|
||||
}
|
||||
}
|
||||
38
Message/S2F33Item.cs
Normal file
38
Message/S2F33Item.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F33Item
|
||||
// 文件描述: S2F33Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F33Item.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 S2F33Item : BaseMessage
|
||||
{
|
||||
public ushort DATAID { get; set; }
|
||||
public List<Report> Reports { get; set; }
|
||||
|
||||
public S2F33Item() => Reports = new List<Report>();
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class Report
|
||||
{
|
||||
public ushort RPTID { get; set; }
|
||||
//public List<ushort> SVIDs { get; set; }
|
||||
public List<object> SVs { get; set; }
|
||||
|
||||
public Report()
|
||||
{
|
||||
//SVIDs = new List<ushort>();
|
||||
SVs = new List<object>();
|
||||
}
|
||||
}
|
||||
}
|
||||
21
Message/S2F34Item.cs
Normal file
21
Message/S2F34Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F34Item
|
||||
// 文件描述: S2F34Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F34Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S2F34Item : BaseMessage
|
||||
{
|
||||
public byte DRACK { get; set; }
|
||||
}
|
||||
}
|
||||
33
Message/S2F35Item.cs
Normal file
33
Message/S2F35Item.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: 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>();
|
||||
}
|
||||
}
|
||||
21
Message/S2F36Item.cs
Normal file
21
Message/S2F36Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F36Item
|
||||
// 文件描述: S2F36Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F36Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S2F36Item : BaseMessage
|
||||
{
|
||||
public byte LRACK { get; set; }
|
||||
}
|
||||
}
|
||||
25
Message/S2F37Item.cs
Normal file
25
Message/S2F37Item.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F37Item
|
||||
// 文件描述: S2F37Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F37Item.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 S2F37Item : BaseMessage
|
||||
{
|
||||
public bool CEED { get; set; }
|
||||
public List<ushort> CEIDs { get; set; }
|
||||
|
||||
public S2F37Item() => CEIDs = new List<ushort>();
|
||||
}
|
||||
}
|
||||
21
Message/S2F38Item.cs
Normal file
21
Message/S2F38Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F38Item
|
||||
// 文件描述: S2F38Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F38Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S2F38Item : BaseMessage
|
||||
{
|
||||
public byte ERACK { get; set; }
|
||||
}
|
||||
}
|
||||
22
Message/S2F41Item.cs
Normal file
22
Message/S2F41Item.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F41Item
|
||||
// 文件描述: S2F41Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F41Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S2F41Item : BaseMessage
|
||||
{
|
||||
public string RCMD { get; set; }
|
||||
public string CPNAME { get; set; }
|
||||
public object CPVAL { get; set; }
|
||||
}
|
||||
}
|
||||
22
Message/S2F42Item.cs
Normal file
22
Message/S2F42Item.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F42Item
|
||||
// 文件描述: S2F42Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F42Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S2F42Item : BaseMessage
|
||||
{
|
||||
public byte HCACK { get; set; }
|
||||
public string CPNAME { get; set; }
|
||||
public object CPACK { get; set; }
|
||||
}
|
||||
}
|
||||
32
Message/S2F43Item.cs
Normal file
32
Message/S2F43Item.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F43Item
|
||||
// 文件描述: S2F43Item
|
||||
// 开发人员: Hupe
|
||||
// 创建时间: 2021/04/16 11:19
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F43Item.cs 文件. by Hupe @2021/04/16 11:19
|
||||
// ********************************************************************************
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S2F43Item : BaseMessage
|
||||
{
|
||||
public List<SpoolingEvent> Events { get; set; }
|
||||
|
||||
public S2F43Item() => Events = new List<SpoolingEvent>();
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class SpoolingEvent
|
||||
{
|
||||
public ushort STRID { get; set; }
|
||||
public List<ushort> EVENTIDs { get; set; }
|
||||
|
||||
public SpoolingEvent() => EVENTIDs = new List<ushort>();
|
||||
}
|
||||
}
|
||||
33
Message/S2F49Item.cs
Normal file
33
Message/S2F49Item.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: 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; }
|
||||
}
|
||||
}
|
||||
24
Message/S5F1Item.cs
Normal file
24
Message/S5F1Item.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S5F3Item
|
||||
// 文件描述: S5F3Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S5F3Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S5F1Item : BaseMessage
|
||||
{
|
||||
public byte ALCD { get; set; }
|
||||
public ushort ALID { get; set; }
|
||||
|
||||
public string ALTX { get; set; }
|
||||
}
|
||||
}
|
||||
21
Message/S5F2Item.cs
Normal file
21
Message/S5F2Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S5F4Item
|
||||
// 文件描述: S5F4Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S5F4Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S5F2Item : BaseMessage
|
||||
{
|
||||
public byte ACKC5 { get; set; }
|
||||
}
|
||||
}
|
||||
22
Message/S5F3Item.cs
Normal file
22
Message/S5F3Item.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S5F3Item
|
||||
// 文件描述: S5F3Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S5F3Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S5F3Item : BaseMessage
|
||||
{
|
||||
public byte ALED { get; set; }
|
||||
public ushort ALID { get; set; }
|
||||
}
|
||||
}
|
||||
21
Message/S5F4Item.cs
Normal file
21
Message/S5F4Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S5F4Item
|
||||
// 文件描述: S5F4Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S5F4Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S5F4Item : BaseMessage
|
||||
{
|
||||
public byte ACKC5 { get; set; }
|
||||
}
|
||||
}
|
||||
26
Message/S6F11Item.cs
Normal file
26
Message/S6F11Item.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S6F11Item
|
||||
// 文件描述: S6F11Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S6F11Item.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 S6F11Item : BaseMessage
|
||||
{
|
||||
public ushort DATAID { get; set; }
|
||||
public UInt32 CEID { get; set; }
|
||||
|
||||
public List<Report> Reports { get; set; }
|
||||
|
||||
public S6F11Item() => Reports = new List<Report>();
|
||||
}
|
||||
}
|
||||
21
Message/S6F12Item.cs
Normal file
21
Message/S6F12Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S7F18Item
|
||||
// 文件描述: S7F18Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S7F18Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S6F12Item : BaseMessage
|
||||
{
|
||||
public byte ACKC6 { get; set; }
|
||||
}
|
||||
}
|
||||
21
Message/S6F24Item.cs
Normal file
21
Message/S6F24Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S2F38Item
|
||||
// 文件描述: S2F38Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S2F38Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S6F24Item : BaseMessage
|
||||
{
|
||||
public byte RSDA { get; set; }
|
||||
}
|
||||
}
|
||||
23
Message/S7F17Item.cs
Normal file
23
Message/S7F17Item.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S7F17Item
|
||||
// 文件描述: S7F17Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S7F17Item.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 S7F17Item : BaseMessage
|
||||
{
|
||||
public List<string> PPIDs { get; set; }
|
||||
|
||||
public S7F17Item() => PPIDs = new List<string>();
|
||||
}
|
||||
}
|
||||
21
Message/S7F18Item.cs
Normal file
21
Message/S7F18Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S7F18Item
|
||||
// 文件描述: S7F18Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S7F18Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S7F18Item : BaseMessage
|
||||
{
|
||||
public byte ACKC7 { get; set; }
|
||||
}
|
||||
}
|
||||
20
Message/S7F19Item.cs
Normal file
20
Message/S7F19Item.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S7F5Item
|
||||
// 文件描述: S7F5Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S7F5Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S7F19Item : BaseMessage
|
||||
{
|
||||
}
|
||||
}
|
||||
22
Message/S7F1Item.cs
Normal file
22
Message/S7F1Item.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S7F1Item
|
||||
// 文件描述: S7F1Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S7F1Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S7F1Item : BaseMessage
|
||||
{
|
||||
public string PPID { get; set; }
|
||||
public uint LENGTH { get; set; }
|
||||
}
|
||||
}
|
||||
24
Message/S7F20Item.cs
Normal file
24
Message/S7F20Item.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S7F5Item
|
||||
// 文件描述: S7F5Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S7F5Item.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 S7F20Item : BaseMessage
|
||||
{
|
||||
public List<string> PPIDs { get; set; }
|
||||
|
||||
public S7F20Item() => PPIDs = new List<string>();
|
||||
}
|
||||
}
|
||||
21
Message/S7F2Item.cs
Normal file
21
Message/S7F2Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S7F2Item
|
||||
// 文件描述: S7F2Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S7F2Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S7F2Item : BaseMessage
|
||||
{
|
||||
public byte PPGNT { get; set; }
|
||||
}
|
||||
}
|
||||
22
Message/S7F3Item.cs
Normal file
22
Message/S7F3Item.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S7F3Item
|
||||
// 文件描述: S7F3Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S7F3Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S7F3Item : BaseMessage
|
||||
{
|
||||
public string PPID { get; set; }
|
||||
public byte[] PPBODY { get; set; }
|
||||
}
|
||||
}
|
||||
21
Message/S7F4Item.cs
Normal file
21
Message/S7F4Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S7F4Item
|
||||
// 文件描述: S7F4Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S7F4Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S7F4Item : BaseMessage
|
||||
{
|
||||
public byte ACKC7 { get; set; }
|
||||
}
|
||||
}
|
||||
21
Message/S7F5Item.cs
Normal file
21
Message/S7F5Item.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: S7F5Item
|
||||
// 文件描述: S7F5Item
|
||||
// 开发人员: Michael
|
||||
// 创建时间: 2019/11/8 0:08
|
||||
//
|
||||
// 更新历史:
|
||||
// + 创建 S7F5Item.cs 文件. by Michael @2019/11/8 0:08
|
||||
// ********************************************************************************
|
||||
|
||||
using Glorysoft.SECS.EQP.Common;
|
||||
using System;
|
||||
|
||||
namespace Glorysoft.SECS.EQP.Message
|
||||
{
|
||||
[Serializable]
|
||||
public class S7F5Item : BaseMessage
|
||||
{
|
||||
public string PPID { get; set; }
|
||||
}
|
||||
}
|
||||
22
Message/S7F6Item.cs
Normal file
22
Message/S7F6Item.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
// ********************************************************************************
|
||||
// 文件名字: 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user