You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
test/src/main/java/com/dao/ChatDao.java

22 lines
491 B

package com.dao;
import com.entity.ChatEntity;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import java.util.List;
import java.util.Map;
import com.baomidou.mybatisplus.plugins.pagination.Pagination;
import org.apache.ibatis.annotations.Param;
import com.entity.view.ChatView;
/**
* 在线咨询 Dao 接口
*
* @author
*/
public interface ChatDao extends BaseMapper<ChatEntity> {
List<ChatView> selectListView(Pagination page,@Param("params")Map<String,Object> params);
}