package com.newfiber.api.pc.service; import com.baomidou.mybatisplus.service.IService; import com.github.pagehelper.PageInfo; import com.newfiber.api.pc.model.EventsManage.ComplaintUserState; /** * complaintUserState 业务层 * * @author luzhan * @date 2021-09-27 */ public interface ComplaintUserStateService extends IService<ComplaintUserState> { /** * complaintUserState 分页列表 * @param searchStr * @param pageNo * @param pageSize * @return */ PageInfo<ComplaintUserState> listForPage(String searchStr, Integer pageNo, Integer pageSize); /** * 添加用户的操作状态 * @param * @param state */ void addOrUpdateUserState(Long id,Integer complaintType, String userNo, int state); }