using FLY.OBJComponents.IService;
using FLY.Weight2.Common;
using System.Collections.ObjectModel;
using System.ComponentModel;
namespace FLY.Weight2.IService
{
public interface IWeightSystemService : INotifyPropertyChanged
{
/// <summary>
/// 称重其它附件
/// </summary>
WeighterAccessory Accessory { get; }
/// <summary>
/// 各层称重
/// </summary>
ObservableCollection<WeighterC> Items { get; }
/// <summary>
/// PLC代理系统
/// </summary>
IPLCProxySystemService PLCos { get; }
/// <summary>
/// 层数
/// </summary>
int ItemsCnt { get; }
}
}
-
潘栩锋 authored
修改 单组份称重 与 称重一致
37e5894d