Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Interfaces/IWmsSaleService.cs
2023-11-08 16:36:42 +08:00

18 lines
390 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tnb.WarehouseMgr.Entities.Dto.Inputs;
namespace Tnb.WarehouseMgr.Interfaces
{
/// <summary>
/// 销售发货
/// </summary>
public interface IWmsSaleService
{
Task<dynamic> MesCheckdSaleCallback(MesCheckdCallbackUpinput input);
}
}