This commit is contained in:
2025-07-12 16:58:00 +08:00
parent 99bbfe3c95
commit 99b9a65b3c
19 changed files with 366 additions and 39 deletions

View File

@@ -0,0 +1,19 @@
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(DateTime now);
}
}