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 sysFollowupCommentList); public int updateByMap(Map modifyMap); public int updateByModel(@Param("record")SysFollowupComment sysFollowupComment); public int deleteByIds(@Param("list") List list); public int deleteById(Integer id); public int deleteByModel(@Param("record") SysFollowupComment sysFollowupComment); public List selectInPage(@Param("record") SysFollowupComment sysFollowupComment, @Param("pageVo") PaginationVO pageVo); public List selectByfollId(Long follId); public List selectByModel(@Param("record") SysFollowupComment sysFollowupComment); public int selectTotalRecord(@Param("record") SysFollowupComment sysFollowupComment); public SysFollowupComment selectById(Long id); public SysFollowupComment selectForUpdate(Long id); }