LogWsDAO.java 2.8 KB

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