package com.hxzk.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.github.pagehelper.PageInfo;
|
import com.hxzk.pojo.TbHistoryinwarning;
|
import com.hxzk.pojo.TbRealinwarning;
|
|
public interface HistoryWarningService extends IService<TbHistoryinwarning> {
|
PageInfo<TbHistoryinwarning> findAll(Integer page, Integer limit);
|
|
PageInfo<TbHistoryinwarning> findSearch(Integer page, Integer limit, TbHistoryinwarning historyinwarning);
|
|
}
|