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