17 lines
337 B
C#
17 lines
337 B
C#
using MyCode.Project.Infrastructure.JackYun;
|
|
|
|
namespace MyCode.Project.Services
|
|
{
|
|
public interface IJackYunService
|
|
{
|
|
JackyunResponse Call(string method, string version, BaseRequestBizData bizData);
|
|
|
|
/// <summary>
|
|
/// 订单查询
|
|
/// </summary>
|
|
|
|
string testTradeFullInfoGet();
|
|
|
|
}
|
|
}
|