Files
YunTongJackYunTask/Reportapi/MyCode.Project.Services/IServices/IJackYunService.cs

35 lines
936 B
C#
Raw Normal View History

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-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-07-04 09:50:02 +08:00
}
}