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.
37 lines
950 B
37 lines
950 B
package com.gxwebsoft.tower.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.gxwebsoft.tower.entity.TowerPlace;
|
|
import com.gxwebsoft.tower.param.TowerPlaceParam;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 检查/保养部位记录表Mapper
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2023-06-08 11:00:17
|
|
*/
|
|
public interface TowerPlaceMapper extends BaseMapper<TowerPlace> {
|
|
|
|
/**
|
|
* 分页查询
|
|
*
|
|
* @param page 分页对象
|
|
* @param param 查询参数
|
|
* @return List<TowerPlace>
|
|
*/
|
|
List<TowerPlace> selectPageRel(@Param("page") IPage<TowerPlace> page,
|
|
@Param("param") TowerPlaceParam param);
|
|
|
|
/**
|
|
* 查询全部
|
|
*
|
|
* @param param 查询参数
|
|
* @return List<User>
|
|
*/
|
|
List<TowerPlace> selectListRel(@Param("param") TowerPlaceParam param);
|
|
|
|
}
|