60 lines
1.6 KiB
C#
60 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ARW.Model;
|
|
using ARW.Model.Dto.Business.EmotionManage.EmoticonDatas;
|
|
using ARW.Model.Models.Business.EmotionManage.EmoticonDatas;
|
|
using ARW.Model.Vo.Business.EmotionManage.EmoticonDatas;
|
|
|
|
namespace ARW.Service.Business.IBusinessService.EmotionManage.EmoticonDatas
|
|
{
|
|
/// <summary>
|
|
/// 表情包接口类
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-28
|
|
/// </summary>
|
|
public interface IEmoticonDataService : IBaseService<EmoticonData>
|
|
{
|
|
/// <summary>
|
|
/// 获取表情包分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<EmoticonDataVo>> GetEmoticonDataList(EmoticonDataQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 添加或修改表情包
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> AddOrUpdateEmoticonData(EmoticonData parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 数据导入处理
|
|
/// </summary>
|
|
/// <param name="shopVo"></param>
|
|
/// <returns></returns>
|
|
Task<EmoticonDataVo> HandleImportData(EmoticonDataVo EmoticonDataVo);
|
|
|
|
|
|
/// <summary>
|
|
/// Excel导入
|
|
/// </summary>
|
|
/// <param name="EmoticonData"></param>
|
|
/// <returns></returns>
|
|
Task<string> ImportExcel(EmoticonData EmoticonData,int index,bool isUpdateSupport,string user);
|
|
|
|
/// <summary>
|
|
/// Excel导出
|
|
/// </summary>
|
|
Task<List<EmoticonDataVo>> HandleExportData(List<EmoticonDataVo> data);
|
|
|
|
|
|
}
|
|
}
|