1234567891011121314151617181920 |
- using System.ComponentModel;
- using WCS.WorkEngineering.Worlds;
- namespace WCS.Service.Worlds
- {
- /// <summary>
- /// 数据采集世界,
- /// 该世界不进行任何的交互处理,仅进行硬件数据采集
- /// </summary>
- [Description("数据采集世界")]
- public class DataCollectionWorld : MainWorld
- {
- /// <summary>
- /// 构造函数
- /// </summary>
- public DataCollectionWorld()
- {
- }
- }
- }
|