| | |
| | | package org.springblade.modules.place.mapper; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.place.dto.PlaceCheckDTO; |
| | | import org.springblade.modules.place.entity.PlaceCheckEntity; |
| | | import org.springblade.modules.place.vo.PlaceCheckVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | |
| | | List<PlaceCheckVO> selectPlaceCheckPage(IPage page, |
| | | @Param("placeCheck") PlaceCheckVO placeCheck); |
| | | |
| | | /** |
| | | * 查询场所检查表 |
| | | * |
| | | * @param id 场所检查表ID |
| | | * @return 场所检查表 |
| | | */ |
| | | public PlaceCheckVO selectPlaceCheckById(Long id); |
| | | |
| | | /** |
| | | * 查询场所检查表列表 |
| | | * |
| | | * @param placeCheckDTO 场所检查表 |
| | | * @return 场所检查表集合 |
| | | */ |
| | | public List<PlaceCheckDTO> selectPlaceCheckList(PlaceCheckDTO placeCheckDTO); |
| | | |
| | | |
| | | } |