XtCzrzDAO.java 2.9 KB

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