You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.4 KiB
Java

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<StuUserComment> selectByExampleWithBLOBs(StuUserCommentExample example);
List<StuUserComment> 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<StuUserComment> stuUserComments);
}