package com.matrix.system.hive.dao;
|
|
import org.apache.ibatis.annotations.Param;
|
import java.util.List;
|
import java.util.Map;
|
import com.matrix.core.pojo.PaginationVO;
|
import com.matrix.system.hive.bean.SysFollowupComment;
|
|
/**
|
* @description 跟进评论
|
* @author
|
* @date 2021-01-10 15:15
|
*/
|
public interface SysFollowupCommentDao{
|
|
public int insert(@Param("item") SysFollowupComment sysFollowupComment);
|
|
public int batchInsert(@Param("list") List<SysFollowupComment> sysFollowupCommentList);
|
|
public int updateByMap(Map<String, Object> modifyMap);
|
|
public int updateByModel(@Param("record")SysFollowupComment sysFollowupComment);
|
|
public int deleteByIds(@Param("list") List<String> list);
|
|
public int deleteById(Integer id);
|
|
public int deleteByModel(@Param("record") SysFollowupComment sysFollowupComment);
|
|
public List<SysFollowupComment> selectInPage(@Param("record") SysFollowupComment sysFollowupComment, @Param("pageVo") PaginationVO pageVo);
|
|
public List<SysFollowupComment> selectByfollId(Long follId);
|
|
public List<SysFollowupComment> selectByModel(@Param("record") SysFollowupComment sysFollowupComment);
|
|
public int selectTotalRecord(@Param("record") SysFollowupComment sysFollowupComment);
|
|
public SysFollowupComment selectById(Long id);
|
|
public SysFollowupComment selectForUpdate(Long id);
|
|
}
|