10/20更新
This commit is contained in:
19
Yi.Framework.Net6/Yi.Framework.Interface/ISkuService.cs
Normal file
19
Yi.Framework.Net6/Yi.Framework.Interface/ISkuService.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Yi.Framework.Common.Models;
|
||||
using Yi.Framework.Model.Models;
|
||||
using Yi.Framework.Repository;
|
||||
|
||||
namespace Yi.Framework.Interface
|
||||
{
|
||||
public partial interface ISkuService:IBaseService<SkuEntity>
|
||||
{
|
||||
/// <summary>
|
||||
/// 动态条件分页查询
|
||||
/// </summary>
|
||||
/// <param name="eneity"></param>
|
||||
/// <param name="page"></param>
|
||||
/// <returns></returns>
|
||||
Task<PageModel<List<SkuEntity>>> SelctPageList(SkuEntity entity, PageParModel page);
|
||||
}
|
||||
}
|
||||
19
Yi.Framework.Net6/Yi.Framework.Interface/ISpuService.cs
Normal file
19
Yi.Framework.Net6/Yi.Framework.Interface/ISpuService.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Yi.Framework.Common.Models;
|
||||
using Yi.Framework.Model.Models;
|
||||
using Yi.Framework.Repository;
|
||||
|
||||
namespace Yi.Framework.Interface
|
||||
{
|
||||
public partial interface ISpuService:IBaseService<SpuEntity>
|
||||
{
|
||||
/// <summary>
|
||||
/// 动态条件分页查询
|
||||
/// </summary>
|
||||
/// <param name="eneity"></param>
|
||||
/// <param name="page"></param>
|
||||
/// <returns></returns>
|
||||
Task<PageModel<List<SpuEntity>>> SelctPageList(SpuEntity entity, PageParModel page);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user