SjSsqtjcDAO.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. package com.huimv.sj.dao;
  2. import com.huimv.sj.dataobject.SjSsqtjc;
  3. import com.huimv.sj.dataobject.SjSsqtjcExample;
  4. import java.util.Date;
  5. import java.util.HashMap;
  6. import java.util.List;
  7. import java.util.Map;
  8. public interface SjSsqtjcDAO {
  9. /**
  10. * This method was generated by Apache iBATIS ibator.
  11. * This method corresponds to the database table sj_ssqtjc
  12. *
  13. * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
  14. */
  15. int countByExample(SjSsqtjcExample example);
  16. /**
  17. * This method was generated by Apache iBATIS ibator.
  18. * This method corresponds to the database table sj_ssqtjc
  19. *
  20. * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
  21. */
  22. int deleteByExample(SjSsqtjcExample example);
  23. /**
  24. * This method was generated by Apache iBATIS ibator.
  25. * This method corresponds to the database table sj_ssqtjc
  26. *
  27. * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
  28. */
  29. int deleteByPrimaryKey(Integer id);
  30. /**
  31. * This method was generated by Apache iBATIS ibator.
  32. * This method corresponds to the database table sj_ssqtjc
  33. *
  34. * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
  35. */
  36. void insert(SjSsqtjc record);
  37. /**
  38. * This method was generated by Apache iBATIS ibator.
  39. * This method corresponds to the database table sj_ssqtjc
  40. *
  41. * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
  42. */
  43. void insertSelective(SjSsqtjc record);
  44. /**
  45. * This method was generated by Apache iBATIS ibator.
  46. * This method corresponds to the database table sj_ssqtjc
  47. *
  48. * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
  49. */
  50. List<SjSsqtjc> selectByExample(SjSsqtjcExample example);
  51. /**
  52. * This method was generated by Apache iBATIS ibator.
  53. * This method corresponds to the database table sj_ssqtjc
  54. *
  55. * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
  56. */
  57. SjSsqtjc selectByPrimaryKey(Integer id);
  58. /**
  59. * This method was generated by Apache iBATIS ibator.
  60. * This method corresponds to the database table sj_ssqtjc
  61. *
  62. * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
  63. */
  64. int updateByExampleSelective(SjSsqtjc record, SjSsqtjcExample example);
  65. /**
  66. * This method was generated by Apache iBATIS ibator.
  67. * This method corresponds to the database table sj_ssqtjc
  68. *
  69. * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
  70. */
  71. int updateByExample(SjSsqtjc record, SjSsqtjcExample example);
  72. /**
  73. * This method was generated by Apache iBATIS ibator.
  74. * This method corresponds to the database table sj_ssqtjc
  75. *
  76. * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
  77. */
  78. int updateByPrimaryKeySelective(SjSsqtjc record);
  79. /**
  80. * This method was generated by Apache iBATIS ibator.
  81. * This method corresponds to the database table sj_ssqtjc
  82. *
  83. * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
  84. */
  85. int updateByPrimaryKey(SjSsqtjc record);
  86. /**
  87. * 获取气体检测记录最大时间
  88. */
  89. public Date selectMaxSsqtjcTimeByParam(Map<String, Object> searchParam);
  90. /**
  91. * 插入实时气体检测记录
  92. */
  93. public void insertSsqtjcByParam(List<Map<String, Object>> paramMapList, HashMap<String, Object> hm);
  94. }