SjlrDnjlDAO.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package com.huimv.sjlr.dao;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.huimv.sjlr.dataobject.SjlrDnjl;
  5. import com.huimv.sjlr.dataobject.SjlrDnjlExample;
  6. import com.huimv.sjlr.dataobject.SjlrMzda;
  7. public interface SjlrDnjlDAO {
  8. /**
  9. * This method was generated by Apache iBATIS ibator.
  10. * This method corresponds to the database table sjlr_dnjl
  11. *
  12. * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
  13. */
  14. int countByExample(SjlrDnjlExample example);
  15. /**
  16. * This method was generated by Apache iBATIS ibator.
  17. * This method corresponds to the database table sjlr_dnjl
  18. *
  19. * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
  20. */
  21. int deleteByExample(SjlrDnjlExample example);
  22. /**
  23. * This method was generated by Apache iBATIS ibator.
  24. * This method corresponds to the database table sjlr_dnjl
  25. *
  26. * @ibatorgenerated Thu Feb 23 13:43:48 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_dnjl
  32. *
  33. * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
  34. */
  35. void insert(SjlrDnjl record);
  36. /**
  37. * This method was generated by Apache iBATIS ibator.
  38. * This method corresponds to the database table sjlr_dnjl
  39. *
  40. * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
  41. */
  42. void insertSelective(SjlrDnjl record);
  43. /**
  44. * This method was generated by Apache iBATIS ibator.
  45. * This method corresponds to the database table sjlr_dnjl
  46. *
  47. * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
  48. */
  49. List<SjlrDnjl> selectByExample(SjlrDnjlExample example);
  50. /**
  51. * This method was generated by Apache iBATIS ibator.
  52. * This method corresponds to the database table sjlr_dnjl
  53. *
  54. * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
  55. */
  56. SjlrDnjl selectByPrimaryKey(Integer id);
  57. /**
  58. * This method was generated by Apache iBATIS ibator.
  59. * This method corresponds to the database table sjlr_dnjl
  60. *
  61. * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
  62. */
  63. int updateByExampleSelective(SjlrDnjl record, SjlrDnjlExample example);
  64. /**
  65. * This method was generated by Apache iBATIS ibator.
  66. * This method corresponds to the database table sjlr_dnjl
  67. *
  68. * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
  69. */
  70. int updateByExample(SjlrDnjl record, SjlrDnjlExample example);
  71. /**
  72. * This method was generated by Apache iBATIS ibator.
  73. * This method corresponds to the database table sjlr_dnjl
  74. *
  75. * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
  76. */
  77. int updateByPrimaryKeySelective(SjlrDnjl record);
  78. /**
  79. * This method was generated by Apache iBATIS ibator.
  80. * This method corresponds to the database table sjlr_dnjl
  81. *
  82. * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
  83. */
  84. int updateByPrimaryKey(SjlrDnjl record);
  85. /**
  86. * 查询断奶记录
  87. * @param paramMap
  88. * @return
  89. */
  90. public List<SjlrDnjl> selectDnjlListByParam(Map<String, Object> paramMap);
  91. public List<SjlrMzda> selectSearchDnjlListByParam(Map<String, Object> paramMap);
  92. public List<SjlrDnjl> selectAddDnjlListByParam(Map<String, Object> paramMap);
  93. public List<SjlrDnjl> selectDnjltcByParam(Map<String, Object> paramMap);
  94. }