18 lines
456 B
C#
18 lines
456 B
C#
using MyCode.Project.Domain.Message.Response.LxmZHMDReport;
|
|
using MyCode.Project.Infrastructure.Common;
|
|
using MyCode.Project.Infrastructure.JackYun;
|
|
|
|
namespace MyCode.Project.Services
|
|
{
|
|
public interface IYuyuboService
|
|
{
|
|
|
|
/// <summary>
|
|
/// 销售订单列表
|
|
/// </summary>
|
|
/// <param name="search"></param>
|
|
/// <returns></returns>
|
|
PageResult<SalOrderResp> GetPageList(PagedSearch search);
|
|
}
|
|
}
|