package com.sztzjy.linkCommerce.mapper; import com.sztzjy.linkCommerce.entity.StuUserComment; import com.sztzjy.linkCommerce.entity.StuUserCommentExample; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface StuUserCommentMapper { long countByExample(StuUserCommentExample example); int deleteByExample(StuUserCommentExample example); int deleteByPrimaryKey(Integer id); int insert(StuUserComment record); int insertSelective(StuUserComment record); List selectByExampleWithBLOBs(StuUserCommentExample example); List selectByExample(StuUserCommentExample example); StuUserComment selectByPrimaryKey(Integer id); int updateByExampleSelective(@Param("record") StuUserComment record, @Param("example") StuUserCommentExample example); int updateByExampleWithBLOBs(@Param("record") StuUserComment record, @Param("example") StuUserCommentExample example); int updateByExample(@Param("record") StuUserComment record, @Param("example") StuUserCommentExample example); int updateByPrimaryKeySelective(StuUserComment record); int updateByPrimaryKeyWithBLOBs(StuUserComment record); int updateByPrimaryKey(StuUserComment record); void addList(@Param("courseNameLists")List stuUserComments); }