XtBbxxDAO.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package com.huimv.xt.dao;
  2. import com.huimv.busi.base.dto.ResponseBean;
  3. import com.huimv.web.base.PageBean;
  4. import com.huimv.xt.dataobject.XtBbxx;
  5. import com.huimv.xt.dataobject.XtBbxxExample;
  6. import java.util.List;
  7. import java.util.Map;
  8. public interface XtBbxxDAO {
  9. /**
  10. * This method was generated by Apache iBATIS ibator.
  11. * This method corresponds to the database table xt_bbxx
  12. *
  13. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  14. */
  15. int countByExample(XtBbxxExample example);
  16. /**
  17. * This method was generated by Apache iBATIS ibator.
  18. * This method corresponds to the database table xt_bbxx
  19. *
  20. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  21. */
  22. int deleteByExample(XtBbxxExample example);
  23. /**
  24. * This method was generated by Apache iBATIS ibator.
  25. * This method corresponds to the database table xt_bbxx
  26. *
  27. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  28. */
  29. int deleteByPrimaryKey(Integer id);
  30. /**
  31. * This method was generated by Apache iBATIS ibator.
  32. * This method corresponds to the database table xt_bbxx
  33. *
  34. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  35. */
  36. void insert(XtBbxx record);
  37. /**
  38. * This method was generated by Apache iBATIS ibator.
  39. * This method corresponds to the database table xt_bbxx
  40. *
  41. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  42. */
  43. void insertSelective(XtBbxx record);
  44. /**
  45. * This method was generated by Apache iBATIS ibator.
  46. * This method corresponds to the database table xt_bbxx
  47. *
  48. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  49. */
  50. List<XtBbxx> selectByExampleWithBLOBs(XtBbxxExample example);
  51. /**
  52. * This method was generated by Apache iBATIS ibator.
  53. * This method corresponds to the database table xt_bbxx
  54. *
  55. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  56. */
  57. List<XtBbxx> selectByExampleWithoutBLOBs(XtBbxxExample example);
  58. /**
  59. * This method was generated by Apache iBATIS ibator.
  60. * This method corresponds to the database table xt_bbxx
  61. *
  62. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  63. */
  64. XtBbxx selectByPrimaryKey(Integer id);
  65. /**
  66. * This method was generated by Apache iBATIS ibator.
  67. * This method corresponds to the database table xt_bbxx
  68. *
  69. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  70. */
  71. int updateByExampleSelective(XtBbxx record, XtBbxxExample example);
  72. /**
  73. * This method was generated by Apache iBATIS ibator.
  74. * This method corresponds to the database table xt_bbxx
  75. *
  76. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  77. */
  78. int updateByExampleWithBLOBs(XtBbxx record, XtBbxxExample example);
  79. /**
  80. * This method was generated by Apache iBATIS ibator.
  81. * This method corresponds to the database table xt_bbxx
  82. *
  83. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  84. */
  85. int updateByExampleWithoutBLOBs(XtBbxx record, XtBbxxExample example);
  86. /**
  87. * This method was generated by Apache iBATIS ibator.
  88. * This method corresponds to the database table xt_bbxx
  89. *
  90. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  91. */
  92. int updateByPrimaryKeySelective(XtBbxx record);
  93. /**
  94. * This method was generated by Apache iBATIS ibator.
  95. * This method corresponds to the database table xt_bbxx
  96. *
  97. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  98. */
  99. int updateByPrimaryKeyWithBLOBs(XtBbxx record);
  100. /**
  101. * This method was generated by Apache iBATIS ibator.
  102. * This method corresponds to the database table xt_bbxx
  103. *
  104. * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
  105. */
  106. int updateByPrimaryKeyWithoutBLOBs(XtBbxx record);
  107. ResponseBean selectXtBbxxByParam(Map<String, Object> paramMap, PageBean pageBean) throws Exception;
  108. public XtBbxx selectXtBbxxByMaxFbsj(Map<String, Object> map) throws Exception;
  109. }