using Repository.BaseRepository.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Repository.BackendRepository.Interface { public interface IBackendRepository : IBaseRepository { void InsertOperatorLog(Dictionary dict, string Table_name); /// /// 手動加入資料至背景派送 /// /// /// /// /// /// /// Task ManualInsertBackgroundServiceTask(string building_ip, string building_guid, string target_table, string mode, List> parameter = null); /// /// 手動加入檔案背至景派送 /// /// /// /// /// /// Task ManualInsertFileBackgroundServiceTask(string building_ip, string building_guid, string target_table, List fileInfos); } }