package com.sztzjy.linkCommerce.mapper; import com.sztzjy.linkCommerce.entity.SchoolClass; import com.sztzjy.linkCommerce.entity.SchoolClassExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface SchoolClassMapper { long countByExample(SchoolClassExample example); int deleteByExample(SchoolClassExample example); int deleteByPrimaryKey(String schoolClassId); int insert(SchoolClass record); int insertSelective(SchoolClass record); List selectByExample(SchoolClassExample example); SchoolClass selectByPrimaryKey(String schoolClassId); int updateByExampleSelective(@Param("record") SchoolClass record, @Param("example") SchoolClassExample example); int updateByExample(@Param("record") SchoolClass record, @Param("example") SchoolClassExample example); int updateByPrimaryKeySelective(SchoolClass record); int updateByPrimaryKey(SchoolClass record); }