12345678910111213141516171819202122 |
- package com.kioor.chat.dao;
- import com.kioor.chat.dto.ChatLogDTO;
- import com.kioor.chat.entity.ChatLogEntity;
- import com.kioor.common.dao.BaseDao;
- import org.apache.ibatis.annotations.Mapper;
- import java.util.List;
- import java.util.Map;
- /**
- * 聊天记录
- *
- * @author Toby javatangbin@163.com
- * @since 3.0 2024-07-17
- */
- @Mapper
- public interface ChatLogDao extends BaseDao<ChatLogEntity> {
- List<ChatLogDTO> getList(Map<String, Object> params);
- ChatLogDTO get(Long id);
- }
|