SjWsbodDAO.java 3.1 KB

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