SjHkswwdDAO.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package com.huimv.sj.dao;
  2. import com.huimv.sj.dataobject.SjHkswwd;
  3. import com.huimv.sj.dataobject.SjHkswwdExample;
  4. import java.util.List;
  5. import java.util.Map;
  6. public interface SjHkswwdDAO {
  7. /**
  8. * This method was generated by Apache iBATIS ibator.
  9. * This method corresponds to the database table sj_hk_sw_wd
  10. *
  11. * @ibatorgenerated Wed Sep 20 15:19:23 CST 2017
  12. */
  13. int countByExample(SjHkswwdExample example);
  14. /**
  15. * This method was generated by Apache iBATIS ibator.
  16. * This method corresponds to the database table sj_hk_sw_wd
  17. *
  18. * @ibatorgenerated Wed Sep 20 15:19:23 CST 2017
  19. */
  20. int deleteByExample(SjHkswwdExample example);
  21. /**
  22. * This method was generated by Apache iBATIS ibator.
  23. * This method corresponds to the database table sj_hk_sw_wd
  24. *
  25. * @ibatorgenerated Wed Sep 20 15:19:23 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_sw_wd
  31. *
  32. * @ibatorgenerated Wed Sep 20 15:19:23 CST 2017
  33. */
  34. void insert(SjHkswwd record);
  35. /**
  36. * This method was generated by Apache iBATIS ibator.
  37. * This method corresponds to the database table sj_hk_sw_wd
  38. *
  39. * @ibatorgenerated Wed Sep 20 15:19:23 CST 2017
  40. */
  41. void insertSelective(SjHkswwd record);
  42. /**
  43. * This method was generated by Apache iBATIS ibator.
  44. * This method corresponds to the database table sj_hk_sw_wd
  45. *
  46. * @ibatorgenerated Wed Sep 20 15:19:23 CST 2017
  47. */
  48. List<SjHkswwd> selectByExample(SjHkswwdExample example);
  49. /**
  50. * This method was generated by Apache iBATIS ibator.
  51. * This method corresponds to the database table sj_hk_sw_wd
  52. *
  53. * @ibatorgenerated Wed Sep 20 15:19:23 CST 2017
  54. */
  55. SjHkswwd selectByPrimaryKey(Integer id);
  56. /**
  57. * This method was generated by Apache iBATIS ibator.
  58. * This method corresponds to the database table sj_hk_sw_wd
  59. *
  60. * @ibatorgenerated Wed Sep 20 15:19:23 CST 2017
  61. */
  62. int updateByExampleSelective(SjHkswwd record, SjHkswwdExample example);
  63. /**
  64. * This method was generated by Apache iBATIS ibator.
  65. * This method corresponds to the database table sj_hk_sw_wd
  66. *
  67. * @ibatorgenerated Wed Sep 20 15:19:23 CST 2017
  68. */
  69. int updateByExample(SjHkswwd record, SjHkswwdExample example);
  70. /**
  71. * This method was generated by Apache iBATIS ibator.
  72. * This method corresponds to the database table sj_hk_sw_wd
  73. *
  74. * @ibatorgenerated Wed Sep 20 15:19:23 CST 2017
  75. */
  76. int updateByPrimaryKeySelective(SjHkswwd record);
  77. /**
  78. * This method was generated by Apache iBATIS ibator.
  79. * This method corresponds to the database table sj_hk_sw_wd
  80. *
  81. * @ibatorgenerated Wed Sep 20 15:19:23 CST 2017
  82. */
  83. int updateByPrimaryKey(SjHkswwd record);
  84. /**
  85. * 插入环控室外温度
  86. */
  87. public void insertHkswwdByParam(List<SjHkswwd> paramMapList);
  88. /**
  89. * 查询一天环控温度
  90. * @param hm
  91. * @return
  92. */
  93. public List<SjHkswwd> selectswwdByParam(Map<String, Object> param);
  94. /**
  95. * 查询全程环控温度
  96. */
  97. public List<SjHkswwd> selectQcswwdByParam(Map<String, Object> param);
  98. }