SjHklhqDAO.java 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package com.huimv.sj.dao;
  2. import com.huimv.sj.dataobject.SjHklhq;
  3. import com.huimv.sj.dataobject.SjHklhq;
  4. import com.huimv.sj.dataobject.SjHklhqExample;
  5. import java.util.List;
  6. import java.util.Map;
  7. public interface SjHklhqDAO {
  8. /**
  9. * This method was generated by Apache iBATIS ibator.
  10. * This method corresponds to the database table sj_hk_lhq
  11. *
  12. * @ibatorgenerated Wed Sep 20 15:19:01 CST 2017
  13. */
  14. int countByExample(SjHklhqExample example);
  15. /**
  16. * This method was generated by Apache iBATIS ibator.
  17. * This method corresponds to the database table sj_hk_lhq
  18. *
  19. * @ibatorgenerated Wed Sep 20 15:19:01 CST 2017
  20. */
  21. int deleteByExample(SjHklhqExample example);
  22. /**
  23. * This method was generated by Apache iBATIS ibator.
  24. * This method corresponds to the database table sj_hk_lhq
  25. *
  26. * @ibatorgenerated Wed Sep 20 15:19:01 CST 2017
  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_lhq
  32. *
  33. * @ibatorgenerated Wed Sep 20 15:19:01 CST 2017
  34. */
  35. void insert(SjHklhq record);
  36. /**
  37. * This method was generated by Apache iBATIS ibator.
  38. * This method corresponds to the database table sj_hk_lhq
  39. *
  40. * @ibatorgenerated Wed Sep 20 15:19:01 CST 2017
  41. */
  42. void insertSelective(SjHklhq record);
  43. /**
  44. * This method was generated by Apache iBATIS ibator.
  45. * This method corresponds to the database table sj_hk_lhq
  46. *
  47. * @ibatorgenerated Wed Sep 20 15:19:01 CST 2017
  48. */
  49. List<SjHklhq> selectByExample(SjHklhqExample example);
  50. /**
  51. * This method was generated by Apache iBATIS ibator.
  52. * This method corresponds to the database table sj_hk_lhq
  53. *
  54. * @ibatorgenerated Wed Sep 20 15:19:01 CST 2017
  55. */
  56. SjHklhq selectByPrimaryKey(Integer id);
  57. /**
  58. * This method was generated by Apache iBATIS ibator.
  59. * This method corresponds to the database table sj_hk_lhq
  60. *
  61. * @ibatorgenerated Wed Sep 20 15:19:01 CST 2017
  62. */
  63. int updateByExampleSelective(SjHklhq record, SjHklhqExample example);
  64. /**
  65. * This method was generated by Apache iBATIS ibator.
  66. * This method corresponds to the database table sj_hk_lhq
  67. *
  68. * @ibatorgenerated Wed Sep 20 15:19:01 CST 2017
  69. */
  70. int updateByExample(SjHklhq record, SjHklhqExample example);
  71. /**
  72. * This method was generated by Apache iBATIS ibator.
  73. * This method corresponds to the database table sj_hk_lhq
  74. *
  75. * @ibatorgenerated Wed Sep 20 15:19:01 CST 2017
  76. */
  77. int updateByPrimaryKeySelective(SjHklhq record);
  78. /**
  79. * This method was generated by Apache iBATIS ibator.
  80. * This method corresponds to the database table sj_hk_lhq
  81. *
  82. * @ibatorgenerated Wed Sep 20 15:19:01 CST 2017
  83. */
  84. int updateByPrimaryKey(SjHklhq record);
  85. /**
  86. * 插入环控硫化氢
  87. */
  88. public void insertHklhqByParam(List<SjHklhq> paramMapList);
  89. /**
  90. * 根据参数查询全程
  91. * @param searchParam
  92. * @return
  93. */
  94. public List<SjHklhq> selectQclhqByParam(Map<String, Object> searchParam);
  95. /**
  96. * 根据参数查询当天
  97. * @param searchParam
  98. * @return
  99. */
  100. public List<SjHklhq> selectDqlhqByParam(Map<String, Object> searchParam);
  101. /**
  102. * 根据参数查询传感器
  103. * @param searchParam
  104. * @return
  105. */
  106. public List<SjHklhq> selectHklhqCgqidByParam(Map<String, Object> searchParam);
  107. }