PlatformMapper.java 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.js.kbt.mapper;
  2. import com.js.kbt.model.Platform;
  3. import com.js.kbt.model.PlatformExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface PlatformMapper {
  7. /**
  8. * This method was generated by MyBatis Generator. This method corresponds to the database table platform
  9. * @mbggenerated Mon Nov 06 13:44:29 CST 2017
  10. */
  11. int countByExample(PlatformExample example);
  12. /**
  13. * This method was generated by MyBatis Generator. This method corresponds to the database table platform
  14. * @mbggenerated Mon Nov 06 13:44:29 CST 2017
  15. */
  16. int deleteByExample(PlatformExample example);
  17. /**
  18. * This method was generated by MyBatis Generator. This method corresponds to the database table platform
  19. * @mbggenerated Mon Nov 06 13:44:29 CST 2017
  20. */
  21. int deleteByPrimaryKey(Integer id);
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table platform
  24. * @mbggenerated Mon Nov 06 13:44:29 CST 2017
  25. */
  26. int insert(Platform record);
  27. /**
  28. * This method was generated by MyBatis Generator. This method corresponds to the database table platform
  29. * @mbggenerated Mon Nov 06 13:44:29 CST 2017
  30. */
  31. int insertSelective(Platform record);
  32. /**
  33. * This method was generated by MyBatis Generator. This method corresponds to the database table platform
  34. * @mbggenerated Mon Nov 06 13:44:29 CST 2017
  35. */
  36. List<Platform> selectByExample(PlatformExample example);
  37. /**
  38. * This method was generated by MyBatis Generator. This method corresponds to the database table platform
  39. * @mbggenerated Mon Nov 06 13:44:29 CST 2017
  40. */
  41. Platform selectByPrimaryKey(Integer id);
  42. /**
  43. * This method was generated by MyBatis Generator. This method corresponds to the database table platform
  44. * @mbggenerated Mon Nov 06 13:44:29 CST 2017
  45. */
  46. int updateByExampleSelective(@Param("record") Platform record,
  47. @Param("example") PlatformExample example);
  48. /**
  49. * This method was generated by MyBatis Generator. This method corresponds to the database table platform
  50. * @mbggenerated Mon Nov 06 13:44:29 CST 2017
  51. */
  52. int updateByExample(@Param("record") Platform record,
  53. @Param("example") PlatformExample example);
  54. /**
  55. * This method was generated by MyBatis Generator. This method corresponds to the database table platform
  56. * @mbggenerated Mon Nov 06 13:44:29 CST 2017
  57. */
  58. int updateByPrimaryKeySelective(Platform record);
  59. /**
  60. * This method was generated by MyBatis Generator. This method corresponds to the database table platform
  61. * @mbggenerated Mon Nov 06 13:44:29 CST 2017
  62. */
  63. int updateByPrimaryKey(Platform record);
  64. }