XtHjbjcsDAO.java 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. package com.huimv.xt.dao;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.huimv.da.dataobject.DaZsda;
  5. import com.huimv.xt.dataobject.XtHjbjcs;
  6. import com.huimv.xt.dataobject.XtHjbjcsExample;
  7. public interface XtHjbjcsDAO {
  8. /**
  9. * This method was generated by Apache iBATIS ibator.
  10. * This method corresponds to the database table xt_hjbjcs
  11. *
  12. * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
  13. */
  14. int countByExample(XtHjbjcsExample example);
  15. /**
  16. * This method was generated by Apache iBATIS ibator.
  17. * This method corresponds to the database table xt_hjbjcs
  18. *
  19. * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
  20. */
  21. int deleteByExample(XtHjbjcsExample example);
  22. /**
  23. * This method was generated by Apache iBATIS ibator.
  24. * This method corresponds to the database table xt_hjbjcs
  25. *
  26. * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
  27. */
  28. int deleteByPrimaryKey(Integer id);
  29. /**
  30. * This method was generated by Apache iBATIS ibator.
  31. * This method corresponds to the database table xt_hjbjcs
  32. *
  33. * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
  34. */
  35. void insert(XtHjbjcs record);
  36. /**
  37. * This method was generated by Apache iBATIS ibator.
  38. * This method corresponds to the database table xt_hjbjcs
  39. *
  40. * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
  41. */
  42. void insertSelective(XtHjbjcs record);
  43. /**
  44. * This method was generated by Apache iBATIS ibator.
  45. * This method corresponds to the database table xt_hjbjcs
  46. *
  47. * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
  48. */
  49. List<XtHjbjcs> selectByExample(XtHjbjcsExample example);
  50. /**
  51. * This method was generated by Apache iBATIS ibator.
  52. * This method corresponds to the database table xt_hjbjcs
  53. *
  54. * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
  55. */
  56. XtHjbjcs selectByPrimaryKey(Integer id);
  57. /**
  58. * This method was generated by Apache iBATIS ibator.
  59. * This method corresponds to the database table xt_hjbjcs
  60. *
  61. * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
  62. */
  63. int updateByExampleSelective(XtHjbjcs record, XtHjbjcsExample example);
  64. /**
  65. * This method was generated by Apache iBATIS ibator.
  66. * This method corresponds to the database table xt_hjbjcs
  67. *
  68. * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
  69. */
  70. int updateByExample(XtHjbjcs record, XtHjbjcsExample example);
  71. /**
  72. * This method was generated by Apache iBATIS ibator.
  73. * This method corresponds to the database table xt_hjbjcs
  74. *
  75. * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
  76. */
  77. int updateByPrimaryKeySelective(XtHjbjcs record);
  78. /**
  79. * This method was generated by Apache iBATIS ibator.
  80. * This method corresponds to the database table xt_hjbjcs
  81. *
  82. * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
  83. */
  84. int updateByPrimaryKey(XtHjbjcs record);
  85. /**
  86. * 根据参数统计
  87. * @param paramMap
  88. * @return
  89. */
  90. int countHjbjcsByParam(Map<String, Object> paramMap);
  91. /**
  92. * 根据参数查询
  93. * @param paramMap
  94. * @return
  95. */
  96. List<XtHjbjcs> selectHjbjcsByParam(Map<String, Object> paramMap);
  97. /**
  98. * 查询当前栏期的所有启用的报警参数
  99. */
  100. List<XtHjbjcs> selectHjbjcsByDqlq();
  101. /**
  102. * 判断猪舍信息是否重复
  103. */
  104. List<DaZsda> selectHjbjcsCheckZsxx(Map<String, Object> paramMap);
  105. }