You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
611 B

  1. // ********************************************************************************
  2. // 文件名字: S7F6Item
  3. // 文件描述: S7F6Item
  4. // 开发人员: Michael
  5. // 创建时间: 2019/11/8 0:08
  6. //
  7. // 更新历史:
  8. // + 创建 S7F6Item.cs 文件. by Michael @2019/11/8 0:08
  9. // ********************************************************************************
  10. using Glorysoft.SECS.EQP.Common;
  11. using System;
  12. namespace Glorysoft.SECS.EQP.Message
  13. {
  14. [Serializable]
  15. public class S7F6Item : BaseMessage
  16. {
  17. public string PPID { get; set; }
  18. public byte[] PPBODY { get; set; }
  19. }
  20. }