package com.newfiber.api.pc.service; import com.baomidou.mybatisplus.service.IService; import com.github.pagehelper.PageInfo; import com.newfiber.api.pc.model.River.PatrolManageBaseVo; import com.newfiber.api.pc.model.River.PatrolManageUserRelation; /** * patrolManageUserRelation 业务层 * * @author luzhan * @date 2021-07-15 */ public interface PatrolManageUserRelationService extends IService<PatrolManageUserRelation> { /** * patrolManageUserRelation 分页列表 * @param searchStr * @param pageNo * @param pageSize * @return */ PageInfo<PatrolManageUserRelation> listForPage(String searchStr, Integer pageNo, Integer pageSize); /** * 查询绑定关系 * @param bindNo * @return */ PatrolManageUserRelation selectByBindNo(Long bindNo,Integer patrolType); /** * 修改用户绑定信息 * @param data */ void changeUser(PatrolManageBaseVo data); }