SjlrMyjlDAO.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package com.huimv.sjlr.dao;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.huimv.sjlr.dataobject.SjlrMyjl;
  5. import com.huimv.sjlr.dataobject.SjlrMyjlExample;
  6. import com.huimv.sjlr.dataobject.SjlrMzda;
  7. public interface SjlrMyjlDAO {
  8. /**
  9. * This method was generated by Apache iBATIS ibator.
  10. * This method corresponds to the database table sjlr_myjl
  11. *
  12. * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017
  13. */
  14. int countByExample(SjlrMyjlExample example);
  15. /**
  16. * This method was generated by Apache iBATIS ibator.
  17. * This method corresponds to the database table sjlr_myjl
  18. *
  19. * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017
  20. */
  21. int deleteByExample(SjlrMyjlExample example);
  22. /**
  23. * This method was generated by Apache iBATIS ibator.
  24. * This method corresponds to the database table sjlr_myjl
  25. *
  26. * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017
  27. */
  28. int deleteByPrimaryKey(Integer id);
  29. /**
  30. * This method was generated by Apache iBATIS ibator.
  31. * This method corresponds to the database table sjlr_myjl
  32. *
  33. * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017
  34. */
  35. void insert(SjlrMyjl record);
  36. /**
  37. * This method was generated by Apache iBATIS ibator.
  38. * This method corresponds to the database table sjlr_myjl
  39. *
  40. * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017
  41. */
  42. void insertSelective(SjlrMyjl record);
  43. /**
  44. * This method was generated by Apache iBATIS ibator.
  45. * This method corresponds to the database table sjlr_myjl
  46. *
  47. * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017
  48. */
  49. List<SjlrMyjl> selectByExample(SjlrMyjlExample example);
  50. /**
  51. * This method was generated by Apache iBATIS ibator.
  52. * This method corresponds to the database table sjlr_myjl
  53. *
  54. * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017
  55. */
  56. SjlrMyjl selectByPrimaryKey(Integer id);
  57. /**
  58. * This method was generated by Apache iBATIS ibator.
  59. * This method corresponds to the database table sjlr_myjl
  60. *
  61. * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017
  62. */
  63. int updateByExampleSelective(SjlrMyjl record, SjlrMyjlExample example);
  64. /**
  65. * This method was generated by Apache iBATIS ibator.
  66. * This method corresponds to the database table sjlr_myjl
  67. *
  68. * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017
  69. */
  70. int updateByExample(SjlrMyjl record, SjlrMyjlExample example);
  71. /**
  72. * This method was generated by Apache iBATIS ibator.
  73. * This method corresponds to the database table sjlr_myjl
  74. *
  75. * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017
  76. */
  77. int updateByPrimaryKeySelective(SjlrMyjl record);
  78. /**
  79. * This method was generated by Apache iBATIS ibator.
  80. * This method corresponds to the database table sjlr_myjl
  81. *
  82. * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017
  83. */
  84. int updateByPrimaryKey(SjlrMyjl record);
  85. /**
  86. * 获取普通免疫列表
  87. * @param parmaMap
  88. * @return
  89. */
  90. public List<SjlrMyjl> selectPtmyListByParam(Map<String, Object> paramMap);
  91. /**
  92. * 获取种猪免疫列表
  93. * @param parmaMap
  94. * @return
  95. */
  96. public List<SjlrMyjl> selectZzmyListByParam(Map<String, Object> paramMap);
  97. /**
  98. * 获取肥猪免疫列表
  99. * @param parmaMap
  100. * @return
  101. */
  102. public List<SjlrMyjl> selectFzmyListByParam(Map<String, Object> paramMap);
  103. /**
  104. * 获取档案
  105. * @param paramMap
  106. * @return
  107. */
  108. public List<SjlrMzda> selectZzmyDaListByParam(Map<String, Object> paramMap);
  109. }