ZrAdminNetCore/ZR.Service/Liveforum/ILiveforumService/ITBannersService.cs
2025-11-16 18:50:32 +08:00

22 lines
502 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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);
}
}