LierdaDwtwDAO.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package com.huimv.lierda.dao;
  2. import com.huimv.lierda.dataobject.LierdaDwtw;
  3. import com.huimv.lierda.dataobject.LierdaDwtwExample;
  4. import java.util.List;
  5. import java.util.Map;
  6. public interface LierdaDwtwDAO {
  7. /**
  8. * This method was generated by Apache iBATIS ibator.
  9. * This method corresponds to the database table lierda_dwtw
  10. *
  11. * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
  12. */
  13. int countByExample(LierdaDwtwExample example);
  14. /**
  15. * This method was generated by Apache iBATIS ibator.
  16. * This method corresponds to the database table lierda_dwtw
  17. *
  18. * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
  19. */
  20. int deleteByExample(LierdaDwtwExample example);
  21. /**
  22. * This method was generated by Apache iBATIS ibator.
  23. * This method corresponds to the database table lierda_dwtw
  24. *
  25. * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
  26. */
  27. int deleteByPrimaryKey(Integer id);
  28. /**
  29. * This method was generated by Apache iBATIS ibator.
  30. * This method corresponds to the database table lierda_dwtw
  31. *
  32. * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
  33. */
  34. void insert(LierdaDwtw record);
  35. /**
  36. * This method was generated by Apache iBATIS ibator.
  37. * This method corresponds to the database table lierda_dwtw
  38. *
  39. * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
  40. */
  41. void insertSelective(LierdaDwtw record);
  42. /**
  43. * This method was generated by Apache iBATIS ibator.
  44. * This method corresponds to the database table lierda_dwtw
  45. *
  46. * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
  47. */
  48. List<LierdaDwtw> selectByExample(LierdaDwtwExample example);
  49. /**
  50. * This method was generated by Apache iBATIS ibator.
  51. * This method corresponds to the database table lierda_dwtw
  52. *
  53. * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
  54. */
  55. LierdaDwtw selectByPrimaryKey(Integer id);
  56. /**
  57. * This method was generated by Apache iBATIS ibator.
  58. * This method corresponds to the database table lierda_dwtw
  59. *
  60. * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
  61. */
  62. int updateByExampleSelective(LierdaDwtw record, LierdaDwtwExample example);
  63. /**
  64. * This method was generated by Apache iBATIS ibator.
  65. * This method corresponds to the database table lierda_dwtw
  66. *
  67. * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
  68. */
  69. int updateByExample(LierdaDwtw record, LierdaDwtwExample example);
  70. /**
  71. * This method was generated by Apache iBATIS ibator.
  72. * This method corresponds to the database table lierda_dwtw
  73. *
  74. * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
  75. */
  76. int updateByPrimaryKeySelective(LierdaDwtw record);
  77. /**
  78. * This method was generated by Apache iBATIS ibator.
  79. * This method corresponds to the database table lierda_dwtw
  80. *
  81. * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
  82. */
  83. int updateByPrimaryKey(LierdaDwtw record);
  84. //一定时间内 每头猪的体温 (最新一条)
  85. public List<LierdaDwtw> getDwtwList(Map<String , Object> paramMap);
  86. }