销售退货单
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Services.IServices
|
||||
{
|
||||
public interface IPurchaseReturnService
|
||||
{
|
||||
/// <summary>
|
||||
/// 推送采购退料单到金蝶云星空
|
||||
/// </summary>
|
||||
/// <param name="id">StorageGoodsDocOutHead表的主键ID(Guid格式的字符串)</param>
|
||||
/// <returns>返回金蝶API的响应结果(JSON格式)</returns>
|
||||
string PushPurchaseReturnToKingDee(string id);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace MyCode.Project.Services.IServices
|
||||
{
|
||||
public interface ISalesReturnService
|
||||
{
|
||||
string PushSalesReturnToKingDee(string id);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user