31 lines
836 B
C#
31 lines
836 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ARW.Model;
|
|
using ARW.Model.Dto.Api.EmotionManage.EmoticonDatas;
|
|
using ARW.Model.Models.Business.EmotionManage.EmoticonDatas;
|
|
using ARW.Model.Vo.Api.EmotionManage.EmoticonDatas;
|
|
|
|
namespace ARW.Service.Api.IBusinessService.EmotionManage.EmoticonDatas
|
|
{
|
|
/// <summary>
|
|
/// 表情包接口类Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-29
|
|
/// </summary>
|
|
public interface IEmoticonDataServiceApi : IBaseService<EmoticonData>
|
|
{
|
|
/// <summary>
|
|
/// 获取表情包分页列表(Api)
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<EmoticonDataVoApi>> GetEmoticonDataListApi(EmoticonDataQueryDtoApi parm);
|
|
|
|
|
|
}
|
|
}
|