25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

26 satır
760 B

  1. // ********************************************************************************
  2. // 文件名字: S6F11Item
  3. // 文件描述: S6F11Item
  4. // 开发人员: Michael
  5. // 创建时间: 2019/11/8 0:08
  6. //
  7. // 更新历史:
  8. // + 创建 S6F11Item.cs 文件. by Michael @2019/11/8 0:08
  9. // ********************************************************************************
  10. using Glorysoft.SECS.EQP.Common;
  11. using System;
  12. using System.Collections.Generic;
  13. namespace Glorysoft.SECS.EQP.Message
  14. {
  15. [Serializable]
  16. public class S6F11Item : BaseMessage
  17. {
  18. public ushort DATAID { get; set; }
  19. public UInt32 CEID { get; set; }
  20. public List<Report> Reports { get; set; }
  21. public S6F11Item() => Reports = new List<Report>();
  22. }
  23. }