using System.ComponentModel;
using WCS.Core;
using WCS.Entity.Protocol.DataStructure;
using WCS.Service.Worlds;
namespace WCS.Service.Systems
{
///
/// 数据采集系统
///
[BelongTo(typeof(DataCollectionWorld))]
[Description("数据采集系统")]
public class DataCollectionSysyem : ServiceSystem
{
public DataCollectionSysyem()
{
}
protected override bool Do(bool obj)
{
DeviceDataPack pack = new DeviceDataPack();
return true;
}
}
}