IDownBlowingSystemService.cs 968 Bytes
using FLY.DownBlowing.Common;
using FLY.OBJComponents.IService;
using FObjBase.Reflect;
using System.Collections.ObjectModel;
using System.ComponentModel;

namespace FLY.DownBlowing.IService
{
    public interface IDownBlowingSystemService : INotifyPropertyChanged
    {
        /// <summary>
        /// 挤出机层数
        /// </summary>
        int TAreasCnt { get; }

        /// <summary>
        /// 收卷
        /// </summary>
        WinderData WinderData { get; }

        /// <summary>
        /// 外冷 
        /// </summary>
        IbcData IbcData { get; }

        /// <summary>
        /// 吸料
        /// </summary>
        ObservableCollection<FeederData> FeederDatas { get; }

        /// <summary>
        /// 挤出温控
        /// </summary>
        ObservableCollection<TempArea> TAreas { get; }

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