1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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; }
}
}