11
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user