123456789101112131415161718192021222324252627282930 |
- using System.Collections.Generic;
- using CB.Entity;
- namespace CB.Interface.OldDataCenter
- {
- public interface IOldDataCenterService
- {
- int GetProcessResultCount(int term);
- /// <summary>
- /// 处理分表结果数据
- /// </summary>
- List<ShortResult> ProcessResultData(int term, int[] openCode);
- void UpBatchDataResult(List<ShortResult> results);
- void UpBatchDataReports(int term, int[] openCode);
- void UpBatchDataEffect(int term, int[] openCode);
- void ProcessReportDeviation(int term);
- void ProcessEffectDeviation(int term);
- void UpConfigQi(int term);
- void PushHistoryResultData(int term,int[] openCode);
- void ResetDataResult(int term);
- }
- }
|