SjlrZzxsDAO.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. package com.huimv.sjlr.dao;
  2. import com.huimv.sjlr.dataobject.SjlrMzda;
  3. import com.huimv.sjlr.dataobject.SjlrZzxs;
  4. import com.huimv.sjlr.dataobject.SjlrZzxsExample;
  5. import java.util.List;
  6. import java.util.Map;
  7. public interface SjlrZzxsDAO {
  8. /**
  9. * This method was generated by Apache iBATIS ibator.
  10. * This method corresponds to the database table sjlr_zzxs
  11. *
  12. * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017
  13. */
  14. int countByExample(SjlrZzxsExample example);
  15. /**
  16. * This method was generated by Apache iBATIS ibator.
  17. * This method corresponds to the database table sjlr_zzxs
  18. *
  19. * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017
  20. */
  21. int deleteByExample(SjlrZzxsExample example);
  22. /**
  23. * This method was generated by Apache iBATIS ibator.
  24. * This method corresponds to the database table sjlr_zzxs
  25. *
  26. * @ibatorgenerated Thu Jul 06 09:23:56 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_zzxs
  32. *
  33. * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017
  34. */
  35. void insert(SjlrZzxs record);
  36. /**
  37. * This method was generated by Apache iBATIS ibator.
  38. * This method corresponds to the database table sjlr_zzxs
  39. *
  40. * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017
  41. */
  42. void insertSelective(SjlrZzxs record);
  43. /**
  44. * This method was generated by Apache iBATIS ibator.
  45. * This method corresponds to the database table sjlr_zzxs
  46. *
  47. * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017
  48. */
  49. List<SjlrZzxs> selectByExample(SjlrZzxsExample example);
  50. /**
  51. * This method was generated by Apache iBATIS ibator.
  52. * This method corresponds to the database table sjlr_zzxs
  53. *
  54. * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017
  55. */
  56. SjlrZzxs selectByPrimaryKey(Integer id);
  57. /**
  58. * This method was generated by Apache iBATIS ibator.
  59. * This method corresponds to the database table sjlr_zzxs
  60. *
  61. * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017
  62. */
  63. int updateByExampleSelective(SjlrZzxs record, SjlrZzxsExample example);
  64. /**
  65. * This method was generated by Apache iBATIS ibator.
  66. * This method corresponds to the database table sjlr_zzxs
  67. *
  68. * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017
  69. */
  70. int updateByExample(SjlrZzxs record, SjlrZzxsExample example);
  71. /**
  72. * This method was generated by Apache iBATIS ibator.
  73. * This method corresponds to the database table sjlr_zzxs
  74. *
  75. * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017
  76. */
  77. int updateByPrimaryKeySelective(SjlrZzxs record);
  78. /**
  79. * This method was generated by Apache iBATIS ibator.
  80. * This method corresponds to the database table sjlr_zzxs
  81. *
  82. * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017
  83. */
  84. int updateByPrimaryKey(SjlrZzxs record);
  85. /**
  86. * 种猪销售
  87. * @param paramMap
  88. * @return
  89. */
  90. public List<SjlrZzxs> selectZzxsListByParam(Map<String, Object> paramMap);
  91. /**
  92. * 获取档案
  93. * @param paramMap
  94. * @return
  95. */
  96. public List<SjlrMzda> selectZzxsDaListByParam(Map<String, Object> paramMap);
  97. /**
  98. * 种猪待售
  99. * @param paramMap
  100. * @return
  101. */
  102. public List<SjlrZzxs> selectZzdsListByParam(Map<String, Object> paramMap);
  103. /**
  104. * 获取种猪待售档案
  105. * @param paramMap
  106. * @return
  107. */
  108. public List<SjlrMzda> selectZzdsDaListByParam(Map<String, Object> paramMap);
  109. public void insertZzdsByParam(List<SjlrZzxs> paramMapList);
  110. // public void updateZzdsByParam(List<SjlrZzxs> paramMapList);
  111. public void updateZzdsByParam(List<SjlrZzxs> zzxsList);
  112. public List<SjlrZzxs> selectZzdsAlltByParam(Map<String, Object> paramMap);
  113. public List<SjlrZzxs> selectZzxsAllListByParam(Map<String, Object> paramMap);
  114. }