爆肝,重构框架,你懂得
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using Yi.Framework.Interface.Base;
|
||||
using Yi.Framework.Model.SHOP.Entitys;
|
||||
using Yi.Framework.Repository;
|
||||
|
||||
namespace Yi.Framework.Interface.SHOP
|
||||
{
|
||||
public partial interface ICategoryService : IBaseService<CategoryEntity>
|
||||
{
|
||||
}
|
||||
}
|
||||
20
Yi.Framework.Net6/Yi.Framework.Interface/SHOP/ISkuService.cs
Normal file
20
Yi.Framework.Net6/Yi.Framework.Interface/SHOP/ISkuService.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Yi.Framework.Common.Models;
|
||||
using Yi.Framework.Interface.Base;
|
||||
using Yi.Framework.Model.SHOP.Entitys;
|
||||
using Yi.Framework.Repository;
|
||||
|
||||
namespace Yi.Framework.Interface.SHOP
|
||||
{
|
||||
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);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using Yi.Framework.Interface.Base;
|
||||
using Yi.Framework.Model.SHOP.Entitys;
|
||||
using Yi.Framework.Repository;
|
||||
|
||||
namespace Yi.Framework.Interface.SHOP
|
||||
{
|
||||
public partial interface ISpecsGroupService : IBaseService<SpecsGroupEntity>
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using Yi.Framework.Interface.Base;
|
||||
using Yi.Framework.Model.SHOP.Entitys;
|
||||
using Yi.Framework.Repository;
|
||||
|
||||
namespace Yi.Framework.Interface.SHOP
|
||||
{
|
||||
public partial interface ISpecsService : IBaseService<SpecsEntity>
|
||||
{
|
||||
}
|
||||
}
|
||||
20
Yi.Framework.Net6/Yi.Framework.Interface/SHOP/ISpuService.cs
Normal file
20
Yi.Framework.Net6/Yi.Framework.Interface/SHOP/ISpuService.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Yi.Framework.Common.Models;
|
||||
using Yi.Framework.Interface.Base;
|
||||
using Yi.Framework.Model.SHOP.Entitys;
|
||||
using Yi.Framework.Repository;
|
||||
|
||||
namespace Yi.Framework.Interface.SHOP
|
||||
{
|
||||
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