using MyCode.Project.Infrastructure.JackYun; using System.Collections.Generic; using System; using MyCode.Project.Domain.Message.Response.JackYun; namespace MyCode.Project.Services { public interface IJackYunService { JackyunResponse Call(string method, string version, BaseRequestBizData bizData); ///// ///// 订单查询 ///// //string testTradeFullInfoGet(); /// /// 订单查询 /// /// 截止日期 /// /// List testTradeFullInfoGet(DateTime now); /// /// 退货查询 /// /// 截止日期 /// /// List GetReturnChangeList(DateTime now); /// /// 获取吉客云采购入库 /// /// 截止日期 /// /// List GetPurchaseInboundData(DateTime now); /// /// 获取吉客云采购退货出库单 /// /// 截止日期 /// /// List GetStorageGoodsDocOutV2(DateTime now); } }