TKzyCourseMapper.java 1.13 KB
package com.server.web.common.mapper;

import com.server.web.common.model.TKzyCourse;
import com.server.web.common.model.TKzyCourseExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;

public interface TKzyCourseMapper {
    long countByExample(TKzyCourseExample example);

    int deleteByExample(TKzyCourseExample example);

    int deleteByPrimaryKey(Long id);

    int insert(TKzyCourse record);

    int insertSelective(TKzyCourse record);

    List<TKzyCourse> selectByExampleWithBLOBs(TKzyCourseExample example);

    List<TKzyCourse> selectByExample(TKzyCourseExample example);

    TKzyCourse selectByPrimaryKey(Long id);

    int updateByExampleSelective(@Param("record") TKzyCourse record, @Param("example") TKzyCourseExample example);

    int updateByExampleWithBLOBs(@Param("record") TKzyCourse record, @Param("example") TKzyCourseExample example);

    int updateByExample(@Param("record") TKzyCourse record, @Param("example") TKzyCourseExample example);

    int updateByPrimaryKeySelective(TKzyCourse record);

    int updateByPrimaryKeyWithBLOBs(TKzyCourse record);

    int updateByPrimaryKey(TKzyCourse record);
}