| | |
| | | package org.springblade.modules.place.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.common.node.TreeStringNode; |
| | | import org.springblade.modules.place.entity.PlaceEntity; |
| | | import org.springblade.modules.place.excel.PlaceAndRelExcel; |
| | |
| | | * @return |
| | | */ |
| | | Object placeAndRelHandle(); |
| | | |
| | | /** |
| | | * 根据编号集合查询对应的场所(按颜色区分近多少天没有发过任务的场所) |
| | | * @param stringList |
| | | * @param tableName |
| | | * @return |
| | | */ |
| | | List<PlaceVO> getPlaceListByParam(List<String> stringList,String tableName); |
| | | |
| | | /** |
| | | * 删除 |
| | | * @param longs |
| | | * @return |
| | | */ |
| | | boolean removePlace(List<Long> longs); |
| | | } |