package com.dy.pipIrrGlobal.daoOp;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dy.pipIrrGlobal.pojoOp.OpeFeedbackReply;
|
import com.dy.pipIrrGlobal.voOp.VofeedbackReply;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @author :WuZeYu
|
* @Date :2024/7/31 15:35
|
* @LastEditTime :2024/7/31 15:35
|
* @Description
|
*/
|
@Mapper
|
public interface OpeFeedbackReplyMapper extends BaseMapper<OpeFeedbackReply> {
|
int deleteByPrimaryKey(Long id);
|
|
int insert(OpeFeedbackReply record);
|
|
int insertSelective(OpeFeedbackReply record);
|
|
OpeFeedbackReply selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(OpeFeedbackReply record);
|
|
int updateByPrimaryKey(OpeFeedbackReply record);
|
|
/**
|
* 获取反馈回复数量
|
* @param params
|
* @return
|
*/
|
Long getRecordCount(Map<String, Object> params);
|
|
/**
|
* 获取反馈回复
|
* @param params
|
* @return
|
*/
|
List<VofeedbackReply> getFeedbackReply(Map<String, Object> params);
|
}
|