DataCollectionSysyem.cs 583 B

1234567891011121314151617181920212223242526
  1. using System.ComponentModel;
  2. using WCS.Core;
  3. using WCS.Entity.Protocol.DataStructure;
  4. using WCS.Service.Worlds;
  5. namespace WCS.Service.Systems
  6. {
  7. /// <summary>
  8. /// 数据采集系统
  9. /// </summary>
  10. [BelongTo(typeof(DataCollectionWorld))]
  11. [Description("数据采集系统")]
  12. public class DataCollectionSysyem : ServiceSystem<bool, bool>
  13. {
  14. public DataCollectionSysyem()
  15. {
  16. }
  17. protected override bool Do(bool obj)
  18. {
  19. DeviceDataPack pack = new DeviceDataPack();
  20. return true;
  21. }
  22. }
  23. }