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,5 +1,8 @@
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Infrastructure.JackYun;
using MyCode.Project.Services;
using System.Collections.Generic;
using System;
using System.Web.Http;
namespace MyCode.Project.WebApi.Controllers
@@ -16,16 +19,31 @@ namespace MyCode.Project.WebApi.Controllers
}
//#region 订单查询
///// <summary>
///// 订单查询
///// </summary>
//[HttpGet]
//[AllowAnonymous]
//public string testTradeFullInfoGet()
//{
// return _jackYunService.testTradeFullInfoGet();
//}
//#endregion
#region
/// <summary>
/// 订单查询
/// 订单查询2
/// </summary>
[HttpGet]
[AllowAnonymous]
public string testTradeFullInfoGet()
public List<TradesItem> testTradeFullInfoGet(DateTime now)
{
return _jackYunService.testTradeFullInfoGet();
return _jackYunService.testTradeFullInfoGet(now);
}
#endregion