35 lines
936 B
C#
35 lines
936 B
C#
using MyCode.Project.Infrastructure.JackYun;
|
|
using System.Collections.Generic;
|
|
using System;
|
|
|
|
namespace MyCode.Project.Services
|
|
{
|
|
public interface IJackYunService
|
|
{
|
|
JackyunResponse Call(string method, string version, BaseRequestBizData bizData);
|
|
|
|
///// <summary>
|
|
///// 订单查询
|
|
///// </summary>
|
|
|
|
//string testTradeFullInfoGet();
|
|
|
|
/// <summary>
|
|
/// 订单查询
|
|
/// </summary>
|
|
/// <param name="now">截止日期</param>
|
|
/// <returns></returns>
|
|
/// <exception cref="BaseException"></exception>
|
|
List<TradesItem> testTradeFullInfoGet(DateTime now);
|
|
|
|
|
|
/// <summary>
|
|
/// 退货查询
|
|
/// </summary>
|
|
/// <param name="now">截止日期</param>
|
|
/// <returns></returns>
|
|
/// <exception cref="BaseException"></exception>
|
|
List<TradesItem> GetReturnChangeList(DateTime now);
|
|
}
|
|
}
|