| | |
| | | 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.excel.PlaceCheckExcel; |
| | | import org.springblade.modules.place.vo.PlaceCheckVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | |
| | | * @return |
| | | */ |
| | | List<PlaceCheckVO> selectPlaceCheckPage(IPage page, |
| | | @Param("placeCheck") PlaceCheckVO placeCheck); |
| | | @Param("placeCheck") PlaceCheckVO placeCheck, |
| | | @Param("isAdministrator") Integer isAdministrator, |
| | | @Param("regionChildCodesList") List<String> regionChildCodesList, |
| | | @Param("gridCodeList") List<String> gridCodeList, |
| | | @Param("nineTypeList") List<String> nineTypeList); |
| | | |
| | | /** |
| | | * 查询场所检查表 |
| | | * |
| | | * @param id 场所检查表ID |
| | | * @return 场所检查表 |
| | | */ |
| | | public PlaceCheckVO selectPlaceCheckById(Long id); |
| | | |
| | | /** |
| | | * 查询场所检查表列表 |
| | | * |
| | | * @param placeCheckDTO 场所检查表 |
| | | * @return 场所检查表集合 |
| | | */ |
| | | public List<PlaceCheckDTO> selectPlaceCheckList(PlaceCheckDTO placeCheckDTO); |
| | | |
| | | /** |
| | | * 查询列表数据导出 |
| | | * |
| | | * @param placeCheck |
| | | * @param isAdministrator |
| | | * @param regionChildCodesList |
| | | * @param gridCodeList |
| | | * @return |
| | | */ |
| | | List<PlaceCheckExcel> selectPlaceCheckListExcel(@Param("placeCheck") PlaceCheckVO placeCheck, |
| | | @Param("isAdministrator") Integer isAdministrator, |
| | | @Param("regionChildCodesList") List<String> regionChildCodesList, |
| | | @Param("gridCodeList") List<String> gridCodeList, |
| | | @Param("nineTypeList") List<String> nineTypeList); |
| | | } |