1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- package com.js.kbt.mapper;
- import com.js.kbt.model.Platform;
- import com.js.kbt.model.PlatformExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface PlatformMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table platform
- * @mbggenerated Mon Nov 06 13:44:29 CST 2017
- */
- int countByExample(PlatformExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table platform
- * @mbggenerated Mon Nov 06 13:44:29 CST 2017
- */
- int deleteByExample(PlatformExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table platform
- * @mbggenerated Mon Nov 06 13:44:29 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table platform
- * @mbggenerated Mon Nov 06 13:44:29 CST 2017
- */
- int insert(Platform record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table platform
- * @mbggenerated Mon Nov 06 13:44:29 CST 2017
- */
- int insertSelective(Platform record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table platform
- * @mbggenerated Mon Nov 06 13:44:29 CST 2017
- */
- List<Platform> selectByExample(PlatformExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table platform
- * @mbggenerated Mon Nov 06 13:44:29 CST 2017
- */
- Platform selectByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table platform
- * @mbggenerated Mon Nov 06 13:44:29 CST 2017
- */
- int updateByExampleSelective(@Param("record") Platform record,
- @Param("example") PlatformExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table platform
- * @mbggenerated Mon Nov 06 13:44:29 CST 2017
- */
- int updateByExample(@Param("record") Platform record,
- @Param("example") PlatformExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table platform
- * @mbggenerated Mon Nov 06 13:44:29 CST 2017
- */
- int updateByPrimaryKeySelective(Platform record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table platform
- * @mbggenerated Mon Nov 06 13:44:29 CST 2017
- */
- int updateByPrimaryKey(Platform record);
- }
|