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/service/ChatService.java

19 lines
445 B

package com.service;
import com.baomidou.mybatisplus.service.IService;
import com.utils.PageUtils;
import com.entity.ChatEntity;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
/**
* 在线咨询 服务类
*/
public interface ChatService extends IService<ChatEntity> {
/**
* @param params 查询参数
* @return 带分页的查询出来的数据
*/
PageUtils queryPage(Map<String, Object> params);
}