SjHkyqDAO.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. package com.huimv.sj.dao;
  2. import com.huimv.sj.dataobject.SjHkyq;
  3. import com.huimv.sj.dataobject.SjHkyqExample;
  4. import java.util.List;
  5. import java.util.Map;
  6. public interface SjHkyqDAO {
  7. /**
  8. * This method was generated by Apache iBATIS ibator.
  9. * This method corresponds to the database table sj_hk_yq
  10. *
  11. * @ibatorgenerated Wed Sep 20 15:18:07 CST 2017
  12. */
  13. int countByExample(SjHkyqExample example);
  14. /**
  15. * This method was generated by Apache iBATIS ibator.
  16. * This method corresponds to the database table sj_hk_yq
  17. *
  18. * @ibatorgenerated Wed Sep 20 15:18:07 CST 2017
  19. */
  20. int deleteByExample(SjHkyqExample example);
  21. /**
  22. * This method was generated by Apache iBATIS ibator.
  23. * This method corresponds to the database table sj_hk_yq
  24. *
  25. * @ibatorgenerated Wed Sep 20 15:18:07 CST 2017
  26. */
  27. int deleteByPrimaryKey(Integer id);
  28. /**
  29. * This method was generated by Apache iBATIS ibator.
  30. * This method corresponds to the database table sj_hk_yq
  31. *
  32. * @ibatorgenerated Wed Sep 20 15:18:07 CST 2017
  33. */
  34. void insert(SjHkyq record);
  35. /**
  36. * This method was generated by Apache iBATIS ibator.
  37. * This method corresponds to the database table sj_hk_yq
  38. *
  39. * @ibatorgenerated Wed Sep 20 15:18:07 CST 2017
  40. */
  41. void insertSelective(SjHkyq record);
  42. /**
  43. * This method was generated by Apache iBATIS ibator.
  44. * This method corresponds to the database table sj_hk_yq
  45. *
  46. * @ibatorgenerated Wed Sep 20 15:18:07 CST 2017
  47. */
  48. List<SjHkyq> selectByExample(SjHkyqExample example);
  49. /**
  50. * This method was generated by Apache iBATIS ibator.
  51. * This method corresponds to the database table sj_hk_yq
  52. *
  53. * @ibatorgenerated Wed Sep 20 15:18:07 CST 2017
  54. */
  55. SjHkyq selectByPrimaryKey(Integer id);
  56. /**
  57. * This method was generated by Apache iBATIS ibator.
  58. * This method corresponds to the database table sj_hk_yq
  59. *
  60. * @ibatorgenerated Wed Sep 20 15:18:07 CST 2017
  61. */
  62. int updateByExampleSelective(SjHkyq record, SjHkyqExample example);
  63. /**
  64. * This method was generated by Apache iBATIS ibator.
  65. * This method corresponds to the database table sj_hk_yq
  66. *
  67. * @ibatorgenerated Wed Sep 20 15:18:07 CST 2017
  68. */
  69. int updateByExample(SjHkyq record, SjHkyqExample example);
  70. /**
  71. * This method was generated by Apache iBATIS ibator.
  72. * This method corresponds to the database table sj_hk_yq
  73. *
  74. * @ibatorgenerated Wed Sep 20 15:18:07 CST 2017
  75. */
  76. int updateByPrimaryKeySelective(SjHkyq record);
  77. /**
  78. * This method was generated by Apache iBATIS ibator.
  79. * This method corresponds to the database table sj_hk_yq
  80. *
  81. * @ibatorgenerated Wed Sep 20 15:18:07 CST 2017
  82. */
  83. int updateByPrimaryKey(SjHkyq record);
  84. /**
  85. * 插入环控氧气
  86. */
  87. public void insertHkyqByParam(List<SjHkyq> paramMapList);
  88. /**
  89. * 根据参数查询全程
  90. * @param searchParam
  91. * @return
  92. */
  93. public List<SjHkyq> selectQcyqByParam(Map<String, Object> searchParam);
  94. /**
  95. * 根据参数查询当天
  96. * @param searchParam
  97. * @return
  98. */
  99. public List<SjHkyq> selectDqyqByParam(Map<String, Object> searchParam);
  100. /**
  101. * 根据参数查询传感器
  102. * @param searchParam
  103. * @return
  104. */
  105. public List<SjHkyq> selectHkyqCgqidByParam(Map<String, Object> searchParam);
  106. /**
  107. * 根据LQID查询有哪几个表没有数据
  108. * list(0) yq 氧气
  109. * list(1) eyht 二氧化碳
  110. * list(2) lhq 硫化氢
  111. * list(3) dl 电量
  112. * list(4) sl 水量
  113. */
  114. @SuppressWarnings("rawtypes")
  115. public String countSnhjButtonByLqid(int lqid);
  116. }