package com.dy.pipIrrGlobal.daoOp; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoOp.OpeFeedback; import com.dy.pipIrrGlobal.voOp.Vofeedback; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; /** * @author :WuZeYu * @Date :2024/7/29 16:45 * @LastEditTime :2024/7/29 16:45 * @Description */ @Mapper public interface OpeFeedbackMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(OpeFeedback record); int insertSelective(OpeFeedback record); OpeFeedback selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(OpeFeedback record); int updateByPrimaryKey(OpeFeedback record); Long getRecordCount(Map params); List getFeedbacks(Map params); }