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