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();
}
}