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

17 lines
337 B
C#
Raw Normal View History

2025-07-04 09:50:02 +08:00
using MyCode.Project.Infrastructure.JackYun;
namespace MyCode.Project.Services
{
public interface IJackYunService
{
JackyunResponse Call(string method, string version, BaseRequestBizData bizData);
2025-07-07 09:35:11 +08:00
/// <summary>
/// 订单查询
/// </summary>
string testTradeFullInfoGet();
2025-07-04 09:50:02 +08:00
}
}