| | |
| | | package org.springblade.modules.grid.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.flowable.idm.engine.impl.persistence.entity.UserEntity; |
| | | import org.springblade.modules.grid.entity.GridmanEntity; |
| | | import org.springblade.modules.grid.excel.GridmanExcel; |
| | | import org.springblade.modules.grid.vo.GridmanVO; |
| | |
| | | List<GridmanVO> getGridmanList(GridmanVO gridman); |
| | | |
| | | Object getGridStatistics(String code, String roleType); |
| | | |
| | | /** |
| | | * 网格员表 自定义详情 |
| | | */ |
| | | GridmanVO getDetail(GridmanEntity gridman); |
| | | |
| | | /** |
| | | * 查询网格id |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | Integer getGridIdByUserId(Long userId); |
| | | |
| | | List<UserEntity> getGridManByCode(String houseCode); |
| | | } |