using MyCode.Project.Domain.Model; using MyCode.Project.Domain.ZHMDModel; using MyCode.Project.Repositories.Common; using System; using System.Collections.Generic; namespace MyCode.Project.Services { public interface IWMSService { /// /// 把WMS订单存进本地数据库 /// /// void SetWMSOrder(List trades); List GetList(object now); /// /// 添加抓单的调度 /// void AddTask(); /// /// 添加“合并吉客云订单到新表”的任务 /// void AddMergeJackYunOrder(); } }