ZnebEbdaDAO.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package com.huimv.zneb.dao;
  2. import com.huimv.busi.base.dto.ResponseBean;
  3. import com.huimv.web.base.PageBean;
  4. import com.huimv.zneb.dataobject.ZnebEbda;
  5. import com.huimv.zneb.dataobject.ZnebEbdaExample;
  6. import java.util.List;
  7. import java.util.Map;
  8. public interface ZnebEbdaDAO {
  9. /**
  10. * This method was generated by Apache iBATIS ibator.
  11. * This method corresponds to the database table zneb_ebda
  12. *
  13. * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
  14. */
  15. int countByExample(ZnebEbdaExample example);
  16. /**
  17. * This method was generated by Apache iBATIS ibator.
  18. * This method corresponds to the database table zneb_ebda
  19. *
  20. * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
  21. */
  22. int deleteByExample(ZnebEbdaExample example);
  23. /**
  24. * This method was generated by Apache iBATIS ibator.
  25. * This method corresponds to the database table zneb_ebda
  26. *
  27. * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
  28. */
  29. int deleteByPrimaryKey(Integer id);
  30. /**
  31. * This method was generated by Apache iBATIS ibator.
  32. * This method corresponds to the database table zneb_ebda
  33. *
  34. * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
  35. */
  36. void insert(ZnebEbda record);
  37. /**
  38. * This method was generated by Apache iBATIS ibator.
  39. * This method corresponds to the database table zneb_ebda
  40. *
  41. * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
  42. */
  43. void insertSelective(ZnebEbda record);
  44. /**
  45. * This method was generated by Apache iBATIS ibator.
  46. * This method corresponds to the database table zneb_ebda
  47. *
  48. * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
  49. */
  50. List<ZnebEbda> selectByExample(ZnebEbdaExample example);
  51. /**
  52. * This method was generated by Apache iBATIS ibator.
  53. * This method corresponds to the database table zneb_ebda
  54. *
  55. * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
  56. */
  57. ZnebEbda selectByPrimaryKey(Integer id);
  58. /**
  59. * This method was generated by Apache iBATIS ibator.
  60. * This method corresponds to the database table zneb_ebda
  61. *
  62. * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
  63. */
  64. int updateByExampleSelective(ZnebEbda record, ZnebEbdaExample example);
  65. /**
  66. * This method was generated by Apache iBATIS ibator.
  67. * This method corresponds to the database table zneb_ebda
  68. *
  69. * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
  70. */
  71. int updateByExample(ZnebEbda record, ZnebEbdaExample example);
  72. /**
  73. * This method was generated by Apache iBATIS ibator.
  74. * This method corresponds to the database table zneb_ebda
  75. *
  76. * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
  77. */
  78. int updateByPrimaryKeySelective(ZnebEbda record);
  79. /**
  80. * This method was generated by Apache iBATIS ibator.
  81. * This method corresponds to the database table zneb_ebda
  82. *
  83. * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
  84. */
  85. int updateByPrimaryKey(ZnebEbda record);
  86. public ResponseBean selectListByParam(Map<String , Object> paramMap , PageBean pageBean);
  87. }