package com.panzhihua.service_community.service; import com.baomidou.mybatisplus.extension.service.IService; import com.panzhihua.common.model.vos.R; import com.panzhihua.common.model.vos.community.VolunteerIntegralRecordVO; import com.panzhihua.service_community.entity.VolunteerIntegralRecord; public interface VolunteerIntegralRecordService extends IService { /** * 获取单个详情 * * @param id * @return */ R getId(String id); /** * 分页查询 * * @param * @return */ R getList(int pageNum, int pageSize,String userId); /** * 新增 * * @param * @return */ R insertVolunteer(VolunteerIntegralRecordVO volunteerIntegralRecordVO); R updateId(VolunteerIntegralRecordVO volunteerIntegralRecordVO); R deleteId(String id); }