| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.place.dto.PlaceCheckDTO; |
| | | import org.springblade.modules.place.entity.PlaceCheckEntity; |
| | | import org.springblade.modules.place.excel.NinePlaceExcel; |
| | | import org.springblade.modules.place.excel.PlaceCheckExcel; |
| | | import org.springblade.modules.place.vo.PlaceCheckVO; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | |
| | | * @param id 场所检查表ID |
| | | * @return 场所检查表 |
| | | */ |
| | | public PlaceCheckVO selectPlaceCheckById(Long id); |
| | | PlaceCheckVO selectPlaceCheckById(Long id); |
| | | |
| | | /** |
| | | * 查询场所检查表列表 |
| | |
| | | * @param placeCheckDTO 场所检查表 |
| | | * @return 场所检查表集合 |
| | | */ |
| | | public List<PlaceCheckDTO> selectPlaceCheckList(PlaceCheckDTO placeCheckDTO); |
| | | List<PlaceCheckDTO> selectPlaceCheckList(PlaceCheckDTO placeCheckDTO); |
| | | |
| | | /** |
| | | * 导出场所检查信息 |
| | | * @param placeCheck |
| | | */ |
| | | List<PlaceCheckExcel> exportPlaceCheck(PlaceCheckVO placeCheck); |
| | | } |