Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Interface/SHOP/ISpuService.cs

21 lines
615 B
C#
Raw Normal View History

2022-10-20 16:33:29 +08:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Yi.Framework.Common.Models;
2023-01-01 23:06:11 +08:00
using Yi.Framework.Interface.Base;
using Yi.Framework.Model.SHOP.Entitys;
2022-10-20 16:33:29 +08:00
using Yi.Framework.Repository;
2023-01-01 23:06:11 +08:00
namespace Yi.Framework.Interface.SHOP
2022-10-20 16:33:29 +08:00
{
2023-01-01 23:06:11 +08:00
public partial interface ISpuService:IBaseService<SpuEntity>
2022-10-20 16:33:29 +08:00
{
/// <summary>
/// 动态条件分页查询
/// </summary>
/// <param name="eneity"></param>
/// <param name="page"></param>
/// <returns></returns>
Task<PageModel<List<SpuEntity>>> SelctPageList(SpuEntity entity, PageParModel page);
}
}