XtDgdskzDAO.java 2.8 KB

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