package cn.gistack.sm.patrol.service;
|
|
import cn.gistack.sm.patrol.entity.PatrolType;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.springblade.core.mp.base.BaseService;
|
|
/**
|
* @Description: 巡查类型
|
*/
|
public interface IPatrolTypeService extends BaseService<PatrolType> {
|
|
IPage<PatrolType> selectPatrolType(IPage<PatrolType> page, PatrolType patrolType);
|
}
|