| | |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.flowable.idm.engine.impl.persistence.entity.UserEntity; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import org.springblade.core.mp.support.Query; |
| | | import org.springblade.modules.auth.enums.UserEnum; |
| | |
| | | * @return |
| | | */ |
| | | User userByAccount(String tenantId, String account); |
| | | |
| | | /** |
| | | * 根据账号获取用户 |
| | | * |
| | | * @param tenantId |
| | | * @param account |
| | | * @return |
| | | */ |
| | | UserInfo userInfo(String tenantId, String account); |
| | | |
| | | /** |
| | | * 用户信息 |
| | |
| | | * @param queryWrapper |
| | | * @return |
| | | */ |
| | | List<UserExcel> exportUser(Wrapper<User> queryWrapper); |
| | | List<UserExcel> exportUser(Wrapper<User> queryWrapper, String tenantId); |
| | | |
| | | /** |
| | | * 注册用户 |
| | |
| | | */ |
| | | UserVO getuserById(Long id); |
| | | |
| | | List<UserEntity> getUserInfoByCode(String houseCode, String type); |
| | | |
| | | List<UserEntity> getUserInfoByDistrictId(String districtId, String building); |
| | | |
| | | /** |
| | | * 处理漏绑定的user_dept |
| | | */ |
| | |
| | | */ |
| | | void importPoliceUser(List<PoliceUserExcel> data); |
| | | |
| | | List<UserEntity> getUserInfoByDistrictIds(String districtIds); |
| | | |
| | | /** |
| | | * 查询500M内的民警 |
| | | * @param longitude |
| | | * @param latitude |
| | | * @return |
| | | */ |
| | | List<User> getPoliceUser(String longitude, String latitude, String houseCode); |
| | | } |