WsclSbztbgDAO.java 2.9 KB

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