AppConfigMapper.java 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package com.goafanti.common.dao;
  2. import java.util.List;
  3. import com.goafanti.app.bo.AppConfigBo;
  4. import com.goafanti.common.model.AppConfig;
  5. import com.goafanti.common.model.AppConfigExample;
  6. import org.apache.ibatis.annotations.Param;
  7. public interface AppConfigMapper {
  8. /**
  9. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  10. * @mbg.generated Wed Jan 24 16:21:41 CST 2018
  11. */
  12. long countByExample(AppConfigExample example);
  13. /**
  14. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  15. * @mbg.generated Wed Jan 24 16:21:41 CST 2018
  16. */
  17. int deleteByExample(AppConfigExample example);
  18. /**
  19. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  20. * @mbg.generated Wed Jan 24 16:21:41 CST 2018
  21. */
  22. int deleteByPrimaryKey(Integer id);
  23. /**
  24. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  25. * @mbg.generated Wed Jan 24 16:21:41 CST 2018
  26. */
  27. int insert(AppConfig record);
  28. /**
  29. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  30. * @mbg.generated Wed Jan 24 16:21:41 CST 2018
  31. */
  32. int insertSelective(AppConfig record);
  33. /**
  34. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  35. * @mbg.generated Wed Jan 24 16:21:41 CST 2018
  36. */
  37. List<AppConfig> selectByExample(AppConfigExample example);
  38. /**
  39. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  40. * @mbg.generated Wed Jan 24 16:21:41 CST 2018
  41. */
  42. AppConfig selectByPrimaryKey(Integer id);
  43. /**
  44. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  45. * @mbg.generated Wed Jan 24 16:21:41 CST 2018
  46. */
  47. int updateByExampleSelective(@Param("record") AppConfig record, @Param("example") AppConfigExample example);
  48. /**
  49. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  50. * @mbg.generated Wed Jan 24 16:21:41 CST 2018
  51. */
  52. int updateByExample(@Param("record") AppConfig record, @Param("example") AppConfigExample example);
  53. /**
  54. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  55. * @mbg.generated Wed Jan 24 16:21:41 CST 2018
  56. */
  57. int updateByPrimaryKeySelective(AppConfig record);
  58. /**
  59. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  60. * @mbg.generated Wed Jan 24 16:21:41 CST 2018
  61. */
  62. int updateByPrimaryKey(AppConfig record);
  63. /**
  64. * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
  65. * @mbg.generated Wed Jan 24 16:14:16 CST 2018
  66. */
  67. AppConfigBo getAppRelease();
  68. }