XtWxhDAO.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.huimv.xt.dao;
  2. import com.huimv.xt.dataobject.XtWxh;
  3. import com.huimv.xt.dataobject.XtWxhExample;
  4. import java.util.List;
  5. public interface XtWxhDAO {
  6. /**
  7. * This method was generated by Apache iBATIS ibator.
  8. * This method corresponds to the database table xt_wxh
  9. *
  10. * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
  11. */
  12. int countByExample(XtWxhExample example);
  13. /**
  14. * This method was generated by Apache iBATIS ibator.
  15. * This method corresponds to the database table xt_wxh
  16. *
  17. * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
  18. */
  19. int deleteByExample(XtWxhExample example);
  20. /**
  21. * This method was generated by Apache iBATIS ibator.
  22. * This method corresponds to the database table xt_wxh
  23. *
  24. * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
  25. */
  26. void insert(XtWxh record);
  27. /**
  28. * This method was generated by Apache iBATIS ibator.
  29. * This method corresponds to the database table xt_wxh
  30. *
  31. * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
  32. */
  33. void insertSelective(XtWxh record);
  34. /**
  35. * This method was generated by Apache iBATIS ibator.
  36. * This method corresponds to the database table xt_wxh
  37. *
  38. * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
  39. */
  40. List<XtWxh> selectByExample(XtWxhExample example);
  41. /**
  42. * This method was generated by Apache iBATIS ibator.
  43. * This method corresponds to the database table xt_wxh
  44. *
  45. * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
  46. */
  47. int updateByExampleSelective(XtWxh record, XtWxhExample example);
  48. /**
  49. * This method was generated by Apache iBATIS ibator.
  50. * This method corresponds to the database table xt_wxh
  51. *
  52. * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
  53. */
  54. int updateByExample(XtWxh record, XtWxhExample example);
  55. }