31 lines
782 B
C#
31 lines
782 B
C#
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
|
|
{
|
|
|
|
/// <summary>
|
|
/// 把WMS订单存进本地数据库
|
|
/// </summary>
|
|
/// <param name="trades"></param>
|
|
|
|
void SetWMSOrder(List<WMStoJackyunInventoryMovementView1> trades);
|
|
List<WMStoJackyunInventoryMovementView1> GetList(object now);
|
|
|
|
/// <summary>
|
|
/// 添加抓单的调度
|
|
/// </summary>
|
|
void AddTask();
|
|
|
|
/// <summary>
|
|
/// 添加“合并吉客云订单到新表”的任务
|
|
/// </summary>
|
|
void AddMergeJackYunOrder();
|
|
}
|
|
}
|