This commit is contained in:
2025-07-07 20:02:36 +08:00
parent 38140986e4
commit 2c7dc97d5f
14 changed files with 573 additions and 8 deletions

View File

@@ -1,4 +1,6 @@
using MyCode.Project.Infrastructure.JackYun;
using System.Collections.Generic;
using System;
namespace MyCode.Project.Services
{
@@ -6,11 +8,19 @@ namespace MyCode.Project.Services
{
JackyunResponse Call(string method, string version, BaseRequestBizData bizData);
///// <summary>
///// 订单查询
///// </summary>
//string testTradeFullInfoGet();
/// <summary>
/// 订单查询
/// </summary>
string testTradeFullInfoGet();
/// <param name="now">截止日期</param>
/// <returns></returns>
/// <exception cref="BaseException"></exception>
List<TradesItem> testTradeFullInfoGet(DateTime now);
}
}