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.
|
|
|
|
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<StuSpendingLevel> 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);
|
|
|
|
|
}
|