This commit is contained in:
2025-07-07 09:35:11 +08:00
parent a9021bbc4c
commit e1e5a82566
10 changed files with 557 additions and 114 deletions

View File

@@ -1,4 +1,5 @@
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Services;
using System.Web.Http;
namespace MyCode.Project.WebApi.Controllers
@@ -7,14 +8,26 @@ namespace MyCode.Project.WebApi.Controllers
/// 测试接口
/// </summary>
public class TestController : BaseAPIController
{
public TestController( )
{
private IJackYunService _jackYunService;
public TestController(IJackYunService jackYunService )
{
_jackYunService = jackYunService;
}
#region
/// <summary>
/// 订单查询
/// </summary>
[HttpGet]
[AllowAnonymous]
public string testTradeFullInfoGet()
{
return _jackYunService.testTradeFullInfoGet();
}
#endregion
//#region AESEncrypt(AES加密)
///// <summary>