SjWeatherDataDAO.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. package com.huimv.sj.dao;
  2. import com.huimv.sj.dataobject.SjWeatherData;
  3. import com.huimv.sj.dataobject.SjWeatherDataExample;
  4. import java.util.List;
  5. public interface SjWeatherDataDAO {
  6. /**
  7. * This method was generated by Apache iBATIS ibator.
  8. * This method corresponds to the database table sj_weatherdata
  9. *
  10. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  11. */
  12. int countByExample(SjWeatherDataExample example);
  13. /**
  14. * This method was generated by Apache iBATIS ibator.
  15. * This method corresponds to the database table sj_weatherdata
  16. *
  17. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  18. */
  19. int deleteByExample(SjWeatherDataExample example);
  20. /**
  21. * This method was generated by Apache iBATIS ibator.
  22. * This method corresponds to the database table sj_weatherdata
  23. *
  24. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  25. */
  26. int deleteByPrimaryKey(Integer id);
  27. /**
  28. * This method was generated by Apache iBATIS ibator.
  29. * This method corresponds to the database table sj_weatherdata
  30. *
  31. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  32. */
  33. void insert(SjWeatherData record);
  34. /**
  35. * This method was generated by Apache iBATIS ibator.
  36. * This method corresponds to the database table sj_weatherdata
  37. *
  38. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  39. */
  40. void insertSelective(SjWeatherData record);
  41. /**
  42. * This method was generated by Apache iBATIS ibator.
  43. * This method corresponds to the database table sj_weatherdata
  44. *
  45. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  46. */
  47. List<SjWeatherData> selectByExampleWithBLOBs(SjWeatherDataExample example);
  48. /**
  49. * This method was generated by Apache iBATIS ibator.
  50. * This method corresponds to the database table sj_weatherdata
  51. *
  52. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  53. */
  54. List<SjWeatherData> selectByExampleWithoutBLOBs(SjWeatherDataExample example);
  55. /**
  56. * This method was generated by Apache iBATIS ibator.
  57. * This method corresponds to the database table sj_weatherdata
  58. *
  59. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  60. */
  61. SjWeatherData selectByPrimaryKey(Integer id);
  62. /**
  63. * This method was generated by Apache iBATIS ibator.
  64. * This method corresponds to the database table sj_weatherdata
  65. *
  66. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  67. */
  68. int updateByExampleSelective(SjWeatherData record, SjWeatherDataExample example);
  69. /**
  70. * This method was generated by Apache iBATIS ibator.
  71. * This method corresponds to the database table sj_weatherdata
  72. *
  73. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  74. */
  75. int updateByExampleWithBLOBs(SjWeatherData record, SjWeatherDataExample example);
  76. /**
  77. * This method was generated by Apache iBATIS ibator.
  78. * This method corresponds to the database table sj_weatherdata
  79. *
  80. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  81. */
  82. int updateByExampleWithoutBLOBs(SjWeatherData record, SjWeatherDataExample example);
  83. /**
  84. * This method was generated by Apache iBATIS ibator.
  85. * This method corresponds to the database table sj_weatherdata
  86. *
  87. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  88. */
  89. int updateByPrimaryKeySelective(SjWeatherData record);
  90. /**
  91. * This method was generated by Apache iBATIS ibator.
  92. * This method corresponds to the database table sj_weatherdata
  93. *
  94. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  95. */
  96. int updateByPrimaryKeyWithBLOBs(SjWeatherData record);
  97. /**
  98. * This method was generated by Apache iBATIS ibator.
  99. * This method corresponds to the database table sj_weatherdata
  100. *
  101. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  102. */
  103. int updateByPrimaryKeyWithoutBLOBs(SjWeatherData record);
  104. }