ImPermissionMapper.java 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package com.minpay.db.table.mapper;
  2. import com.minpay.db.table.model.ImPermission;
  3. import com.minpay.db.table.model.ImPermissionExample;
  4. import com.minpay.db.table.model.ImPermissionKey;
  5. import com.startup.minpay.frame.jdbc.IMINMybatisEntityMapper;
  6. import java.util.List;
  7. import org.apache.ibatis.annotations.Param;
  8. public interface ImPermissionMapper extends IMINMybatisEntityMapper<ImPermission, ImPermissionKey, ImPermissionExample> {
  9. /**
  10. * This method was generated by MyBatis Generator.
  11. * This method corresponds to the database table im_permission
  12. *
  13. * @mbggenerated
  14. */
  15. int countByExample(ImPermissionExample example);
  16. /**
  17. * This method was generated by MyBatis Generator.
  18. * This method corresponds to the database table im_permission
  19. *
  20. * @mbggenerated
  21. */
  22. int deleteByExample(ImPermissionExample example);
  23. /**
  24. * This method was generated by MyBatis Generator.
  25. * This method corresponds to the database table im_permission
  26. *
  27. * @mbggenerated
  28. */
  29. int deleteByPrimaryKey(ImPermissionKey key);
  30. /**
  31. * This method was generated by MyBatis Generator.
  32. * This method corresponds to the database table im_permission
  33. *
  34. * @mbggenerated
  35. */
  36. int insert(ImPermission record);
  37. /**
  38. * This method was generated by MyBatis Generator.
  39. * This method corresponds to the database table im_permission
  40. *
  41. * @mbggenerated
  42. */
  43. int insertSelective(ImPermission record);
  44. /**
  45. * This method was generated by MyBatis Generator.
  46. * This method corresponds to the database table im_permission
  47. *
  48. * @mbggenerated
  49. */
  50. List<ImPermission> selectByExample(ImPermissionExample example);
  51. /**
  52. * This method was generated by MyBatis Generator.
  53. * This method corresponds to the database table im_permission
  54. *
  55. * @mbggenerated
  56. */
  57. ImPermission selectByPrimaryKey(ImPermissionKey key);
  58. /**
  59. * This method was generated by MyBatis Generator.
  60. * This method corresponds to the database table im_permission
  61. *
  62. * @mbggenerated
  63. */
  64. int updateByExampleSelective(@Param("record") ImPermission record, @Param("example") ImPermissionExample example);
  65. /**
  66. * This method was generated by MyBatis Generator.
  67. * This method corresponds to the database table im_permission
  68. *
  69. * @mbggenerated
  70. */
  71. int updateByExample(@Param("record") ImPermission record, @Param("example") ImPermissionExample example);
  72. /**
  73. * This method was generated by MyBatis Generator.
  74. * This method corresponds to the database table im_permission
  75. *
  76. * @mbggenerated
  77. */
  78. int updateByPrimaryKeySelective(ImPermission record);
  79. /**
  80. * This method was generated by MyBatis Generator.
  81. * This method corresponds to the database table im_permission
  82. *
  83. * @mbggenerated
  84. */
  85. int updateByPrimaryKey(ImPermission record);
  86. }