using DMS.Infrastructure.Interfaces.Services; namespace DMS.Infrastructure.Interfaces.Services { /// /// S7服务工厂接口,用于创建S7Service实例 /// public interface IS7ServiceFactory { /// /// 创建S7服务实例 /// /// S7服务实例 IS7Service CreateService(); } }