2025-07-04 09:50:02 +08:00
|
|
|
|
using MyCode.Project.Infrastructure.JackYun;
|
2025-07-07 20:02:36 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System;
|
2025-11-05 18:19:40 +08:00
|
|
|
|
using MyCode.Project.Domain.Message.Response.JackYun;
|
2025-07-04 09:50:02 +08:00
|
|
|
|
|
|
|
|
|
|
namespace MyCode.Project.Services
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IJackYunService
|
|
|
|
|
|
{
|
|
|
|
|
|
JackyunResponse Call(string method, string version, BaseRequestBizData bizData);
|
|
|
|
|
|
|
2025-07-07 20:02:36 +08:00
|
|
|
|
///// <summary>
|
|
|
|
|
|
///// 订单查询
|
|
|
|
|
|
///// </summary>
|
|
|
|
|
|
|
|
|
|
|
|
//string testTradeFullInfoGet();
|
|
|
|
|
|
|
2025-07-07 09:35:11 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 订单查询
|
|
|
|
|
|
/// </summary>
|
2025-07-07 20:02:36 +08:00
|
|
|
|
/// <param name="now">截止日期</param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
/// <exception cref="BaseException"></exception>
|
|
|
|
|
|
List<TradesItem> testTradeFullInfoGet(DateTime now);
|
2025-07-07 09:35:11 +08:00
|
|
|
|
|
2025-10-21 11:27:52 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 退货查询
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="now">截止日期</param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
/// <exception cref="BaseException"></exception>
|
|
|
|
|
|
List<TradesItem> GetReturnChangeList(DateTime now);
|
2025-11-04 11:11:40 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取吉客云采购入库
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="now">截止日期</param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
/// <exception cref="BaseException"></exception>
|
|
|
|
|
|
List<BusiOrderGoodsDocInResponse> GetPurchaseInboundData(DateTime now);
|
2025-11-05 18:19:40 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-11-06 18:12:17 +08:00
|
|
|
|
/// 获取吉客云采购退货出库单
|
2025-11-05 18:19:40 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="now">截止日期</param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
/// <exception cref="BaseException"></exception>
|
|
|
|
|
|
List<ErpStorageGoodsDocOutV2ResponseBizData> GetStorageGoodsDocOutV2(DateTime now);
|
2025-07-04 09:50:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|