IIntegratedSystemService.cs 669 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1
using FLY.Integrated.Common;
2 3 4 5 6 7 8 9 10
using FLY.OBJComponents.IService;
using FObjBase;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

潘栩锋's avatar
潘栩锋 committed
11
namespace FLY.Integrated.IService
12
{
潘栩锋's avatar
潘栩锋 committed
13
    public interface IIntegratedSystemService:INotifyPropertyChanged
14 15 16 17
    {
        /// <summary>
        /// 数据
        /// </summary>
18
        IbcData Ibc { get; }
19 20

        /// <summary>
潘栩锋's avatar
潘栩锋 committed
21
        ///  收卷
22
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
23
        WinderAccessory Accessory { get; }
24 25 26 27 28 29 30

        /// <summary>
        /// PLC代理系统
        /// </summary>
        IPLCProxySystemService PLCos { get; }
    }
}