采购收货,销售发货新增对外接口
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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 IWmsPurchaseService
|
||||
{
|
||||
Task<dynamic> MesCheckdPurchaseCallback(MesCheckdCallbackUpinput input);
|
||||
}
|
||||
}
|
||||
17
WarehouseMgr/Tnb.WarehouseMgr.Interfaces/IWmsSaleService.cs
Normal file
17
WarehouseMgr/Tnb.WarehouseMgr.Interfaces/IWmsSaleService.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user