| | |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import org.springblade.core.mp.support.Query; |
| | | import org.springblade.modules.auth.enums.UserEnum; |
| | | import org.springblade.modules.house.vo.HouseholdVO; |
| | | import org.springblade.modules.system.entity.User; |
| | | import org.springblade.modules.system.entity.UserInfo; |
| | | import org.springblade.modules.system.entity.UserOauth; |
| | | import org.springblade.modules.system.excel.PoliceUserExcel; |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.vo.UserDetailVO; |
| | | import org.springblade.modules.system.vo.UserVO; |
| | |
| | | * @param tenantId |
| | | * @return |
| | | */ |
| | | IPage<User> selectUserPage(IPage<User> page, User user, Long deptId, String tenantId); |
| | | IPage<User> selectUserPage(IPage<User> page, User user, String deptId, String tenantId); |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | |
| | | /** |
| | | * 获取用户信息ById |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | UserVO getuserById(Long id); |
| | | |
| | | List<UserEntity> getUserInfoByCode(String houseCode, String type); |
| | | |
| | | List<UserEntity> getUserInfoByDistrictId(String districtId, String building); |
| | | |
| | | /** |
| | | * 处理漏绑定的user_dept |
| | | */ |
| | | Object handleUserDept(); |
| | | |
| | | List<User> getUserListByIds(String receiveUser); |
| | | |
| | | List<User> getUserListByDeptIds(String receiveDept); |
| | | |
| | | List<User> getUserInfoByPropertyId(String propertyCompanyId,String roleId); |
| | | |
| | | Object handleUser(); |
| | | |
| | | /** |
| | | * 导入民警信息 |
| | | * @param data |
| | | */ |
| | | void importPoliceUser(List<PoliceUserExcel> data); |
| | | |
| | | /** |
| | | * 通过小区id查询用户 |
| | | * @param districtIds |
| | | * @param building |
| | | * @param unit |
| | | * @param name |
| | | * @return |
| | | */ |
| | | IPage<HouseholdVO> getUserInfoByDistrictIds(String districtIds,String building,String unit,String name,IPage<HouseholdVO> page); |
| | | |
| | | /** |
| | | * 查询500M内的民警 |
| | | * @param longitude |
| | | * @param latitude |
| | | * @return |
| | | */ |
| | | List<User> getPoliceUser(String longitude, String latitude, String houseCode); |
| | | } |