第一次提交
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
package com.gxwebsoft.tower.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.gxwebsoft.tower.entity.TowerPlaceSafety;
|
||||
import com.gxwebsoft.tower.param.TowerPlaceSafetyParam;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 安全巡检部位管理表Mapper
|
||||
*
|
||||
* @author 科技小王子
|
||||
* @since 2023-06-08 11:00:17
|
||||
*/
|
||||
public interface TowerPlaceSafetyMapper extends BaseMapper<TowerPlaceSafety> {
|
||||
|
||||
/**
|
||||
* 分页查询
|
||||
*
|
||||
* @param page 分页对象
|
||||
* @param param 查询参数
|
||||
* @return List<TowerPlaceSafety>
|
||||
*/
|
||||
List<TowerPlaceSafety> selectPageRel(@Param("page") IPage<TowerPlaceSafety> page,
|
||||
@Param("param") TowerPlaceSafetyParam param);
|
||||
|
||||
/**
|
||||
* 查询全部
|
||||
*
|
||||
* @param param 查询参数
|
||||
* @return List<User>
|
||||
*/
|
||||
List<TowerPlaceSafety> selectListRel(@Param("param") TowerPlaceSafetyParam param);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user