| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.grid.entity.GridEntity; |
| | | import org.springblade.modules.grid.excel.GridExcel; |
| | | import org.springblade.modules.grid.excel.GridmanExcel; |
| | | import org.springblade.modules.grid.vo.GridVO; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | |
| | | * @return |
| | | */ |
| | | GridVO getGridDetailByParam(PlaceVO place); |
| | | |
| | | /** |
| | | * 网格表 自定义详情 |
| | | * @param grid |
| | | * @return |
| | | */ |
| | | GridVO getGridDetail(GridVO grid); |
| | | |
| | | /** |
| | | * 网格表 自定义新增或修改 |
| | | */ |
| | | boolean saveOrUpdateGrid(GridEntity grid); |
| | | |
| | | /** |
| | | * 网格数据同步处理 |
| | | */ |
| | | Object asyncGridDept(); |
| | | |
| | | /** |
| | | * 网格树 |
| | | * @param grid |
| | | * @return |
| | | */ |
| | | Object getGridTree(GridVO grid); |
| | | |
| | | Object gridInfoByHouseCode(String houseCode); |
| | | |
| | | /** |
| | | * 网格集合查询 |
| | | * @param grid |
| | | * @return |
| | | */ |
| | | Object getGridList(GridVO grid); |
| | | |
| | | /** |
| | | * 查询小区网格绑定 |
| | | * @param aoiCode 小区aoiCode |
| | | * @return |
| | | */ |
| | | List<GridVO> getGridListByAoiCode(String aoiCode); |
| | | } |