using Mesnac.Compressor.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Mesnac.Compressor.Station
{
public interface IStation
{
///
/// 判断当前工位是否应该工作
///
///
///
bool PrepareWork(StationInfo station);
///
/// 保存数据
///
///
///
bool HandleData(StationInfo station);
///
///
///
///
///
///
bool CheckNewData(StationInfo station, string barcode);
}
}