52 lines
1.6 KiB
C#
52 lines
1.6 KiB
C#
using MyCode.Project.Infrastructure.JackYun;
|
|
using System.Collections.Generic;
|
|
using System;
|
|
using MyCode.Project.Domain.Message.Response.JackYun;
|
|
|
|
namespace MyCode.Project.Services
|
|
{
|
|
public interface IJackYunService
|
|
{
|
|
JackyunResponse Call(string method, string version, BaseRequestBizData bizData);
|
|
|
|
///// <summary>
|
|
///// 订单查询
|
|
///// </summary>
|
|
|
|
//string testTradeFullInfoGet();
|
|
|
|
/// <summary>
|
|
/// 订单查询
|
|
/// </summary>
|
|
/// <param name="now">截止日期</param>
|
|
/// <returns></returns>
|
|
/// <exception cref="BaseException"></exception>
|
|
List<TradesItem> testTradeFullInfoGet(DateTime now);
|
|
|
|
|
|
/// <summary>
|
|
/// 退货查询
|
|
/// </summary>
|
|
/// <param name="now">截止日期</param>
|
|
/// <returns></returns>
|
|
/// <exception cref="BaseException"></exception>
|
|
List<TradesItem> GetReturnChangeList(DateTime now);
|
|
|
|
/// <summary>
|
|
/// 获取吉客云采购入库
|
|
/// </summary>
|
|
/// <param name="now">截止日期</param>
|
|
/// <returns></returns>
|
|
/// <exception cref="BaseException"></exception>
|
|
List<BusiOrderGoodsDocInResponse> GetPurchaseInboundData(DateTime now);
|
|
|
|
/// <summary>
|
|
/// 获取吉客云采购退货出库单
|
|
/// </summary>
|
|
/// <param name="now">截止日期</param>
|
|
/// <returns></returns>
|
|
/// <exception cref="BaseException"></exception>
|
|
List<ErpStorageGoodsDocOutV2ResponseBizData> GetStorageGoodsDocOutV2(DateTime now);
|
|
}
|
|
}
|