using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Calculation.DispatchAna { /// /// 调度分析计算器接口 /// public interface IGetCurrentRecord { /// /// 获取当前调度信息 /// /// /// /// /// Model.CurrentRecordBundle GetCurrentRecord(long CorpID, long StationID, out string error_info); } }