ChatLogDao.java 481 B

12345678910111213141516171819202122
  1. package com.kioor.chat.dao;
  2. import com.kioor.chat.dto.ChatLogDTO;
  3. import com.kioor.chat.entity.ChatLogEntity;
  4. import com.kioor.common.dao.BaseDao;
  5. import org.apache.ibatis.annotations.Mapper;
  6. import java.util.List;
  7. import java.util.Map;
  8. /**
  9. * 聊天记录
  10. *
  11. * @author Toby javatangbin@163.com
  12. * @since 3.0 2024-07-17
  13. */
  14. @Mapper
  15. public interface ChatLogDao extends BaseDao<ChatLogEntity> {
  16. List<ChatLogDTO> getList(Map<String, Object> params);
  17. ChatLogDTO get(Long id);
  18. }