22 lines
502 B
C#
22 lines
502 B
C#
using ZR.LiveForum.Model.Liveforum.Dto;
|
||
using ZR.LiveForum.Model.Liveforum;
|
||
|
||
namespace ZR.Service.Liveforum.ILiveforumService
|
||
{
|
||
/// <summary>
|
||
/// 轮播图表,存储首页轮播图配置信息service接口
|
||
/// </summary>
|
||
public interface ITBannersService : IBaseService<TBanners>
|
||
{
|
||
PagedInfo<TBannersDto> GetList(TBannersQueryDto parm);
|
||
|
||
TBanners GetInfo(int Id);
|
||
|
||
|
||
TBanners AddTBanners(TBanners parm);
|
||
int UpdateTBanners(TBanners parm);
|
||
|
||
|
||
}
|
||
}
|