18 lines
390 B
C#
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);
|
|
}
|
|
}
|