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.

32 lines
1011 B
Java

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.Mapper;
import org.apache.ibatis.annotations.Param;
@Mapper
public interface SchoolClassMapper {
long countByExample(SchoolClassExample example);
int deleteByExample(SchoolClassExample example);
int deleteByPrimaryKey(String schoolClassId);
int insert(SchoolClass record);
int insertSelective(SchoolClass record);
List<SchoolClass> 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);
}