SjHkaqDAO.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. package com.huimv.sj.dao;
  2. import java.util.Date;
  3. import java.util.List;
  4. import java.util.Map;
  5. import com.huimv.sj.dataobject.SjHkaq;
  6. import com.huimv.sj.dataobject.SjHkaqExample;
  7. public interface SjHkaqDAO {
  8. /**
  9. * This method was generated by Apache iBATIS ibator.
  10. * This method corresponds to the database table sj_hk_aq
  11. *
  12. * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
  13. */
  14. int countByExample(SjHkaqExample example);
  15. /**
  16. * This method was generated by Apache iBATIS ibator.
  17. * This method corresponds to the database table sj_hk_aq
  18. *
  19. * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
  20. */
  21. int deleteByExample(SjHkaqExample example);
  22. /**
  23. * This method was generated by Apache iBATIS ibator.
  24. * This method corresponds to the database table sj_hk_aq
  25. *
  26. * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
  27. */
  28. int deleteByPrimaryKey(Integer id);
  29. /**
  30. * This method was generated by Apache iBATIS ibator.
  31. * This method corresponds to the database table sj_hk_aq
  32. *
  33. * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
  34. */
  35. void insert(SjHkaq record);
  36. /**
  37. * This method was generated by Apache iBATIS ibator.
  38. * This method corresponds to the database table sj_hk_aq
  39. *
  40. * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
  41. */
  42. void insertSelective(SjHkaq record);
  43. /**
  44. * This method was generated by Apache iBATIS ibator.
  45. * This method corresponds to the database table sj_hk_aq
  46. *
  47. * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
  48. */
  49. List<SjHkaq> selectByExample(SjHkaqExample example);
  50. /**
  51. * This method was generated by Apache iBATIS ibator.
  52. * This method corresponds to the database table sj_hk_aq
  53. *
  54. * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
  55. */
  56. SjHkaq selectByPrimaryKey(Integer id);
  57. /**
  58. * This method was generated by Apache iBATIS ibator.
  59. * This method corresponds to the database table sj_hk_aq
  60. *
  61. * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
  62. */
  63. int updateByExampleSelective(SjHkaq record, SjHkaqExample example);
  64. /**
  65. * This method was generated by Apache iBATIS ibator.
  66. * This method corresponds to the database table sj_hk_aq
  67. *
  68. * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
  69. */
  70. int updateByExample(SjHkaq record, SjHkaqExample example);
  71. /**
  72. * This method was generated by Apache iBATIS ibator.
  73. * This method corresponds to the database table sj_hk_aq
  74. *
  75. * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
  76. */
  77. int updateByPrimaryKeySelective(SjHkaq record);
  78. /**
  79. * This method was generated by Apache iBATIS ibator.
  80. * This method corresponds to the database table sj_hk_aq
  81. *
  82. * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
  83. */
  84. int updateByPrimaryKey(SjHkaq record);
  85. /**
  86. * 获取最大记录时间
  87. * @param paramMap
  88. * @return
  89. */
  90. public Date selectHkaqMaxtimeByParam(Map<String, Object> paramMap);
  91. /**
  92. * 插入数据
  93. * @param paramMapList
  94. */
  95. public void insertHkaqByParam(List<SjHkaq> paramMapList);
  96. /**
  97. * 根据参数查询全程
  98. * @param searchParam
  99. * @return
  100. */
  101. public List<SjHkaq> selectQcaqByParam(Map<String, Object> searchParam);
  102. /**
  103. * 根据参数查询当天
  104. * @param searchParam
  105. * @return
  106. */
  107. public List<SjHkaq> selectDqaqByParam(Map<String, Object> searchParam);
  108. /**
  109. * 根据参数查询传感器
  110. * @param searchParam
  111. * @return
  112. */
  113. public List<SjHkaq> selectHkaqCgqidByParam(Map<String, Object> searchParam);
  114. }