LierdaGlidDAO.java 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.huimv.lierda.dao;
  2. import com.huimv.lierda.dataobject.LierdaGlidExample;
  3. import com.huimv.lierda.dataobject.LierdaGlidKey;
  4. import java.util.List;
  5. public interface LierdaGlidDAO {
  6. /**
  7. * This method was generated by Apache iBATIS ibator.
  8. * This method corresponds to the database table lierda_glid
  9. *
  10. * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
  11. */
  12. int countByExample(LierdaGlidExample example);
  13. /**
  14. * This method was generated by Apache iBATIS ibator.
  15. * This method corresponds to the database table lierda_glid
  16. *
  17. * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
  18. */
  19. int deleteByExample(LierdaGlidExample example);
  20. /**
  21. * This method was generated by Apache iBATIS ibator.
  22. * This method corresponds to the database table lierda_glid
  23. *
  24. * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
  25. */
  26. int deleteByPrimaryKey(LierdaGlidKey key);
  27. /**
  28. * This method was generated by Apache iBATIS ibator.
  29. * This method corresponds to the database table lierda_glid
  30. *
  31. * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
  32. */
  33. void insert(LierdaGlidKey record);
  34. /**
  35. * This method was generated by Apache iBATIS ibator.
  36. * This method corresponds to the database table lierda_glid
  37. *
  38. * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
  39. */
  40. void insertSelective(LierdaGlidKey record);
  41. /**
  42. * This method was generated by Apache iBATIS ibator.
  43. * This method corresponds to the database table lierda_glid
  44. *
  45. * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
  46. */
  47. List<LierdaGlidKey> selectByExample(LierdaGlidExample example);
  48. /**
  49. * This method was generated by Apache iBATIS ibator.
  50. * This method corresponds to the database table lierda_glid
  51. *
  52. * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
  53. */
  54. int updateByExampleSelective(LierdaGlidKey record, LierdaGlidExample example);
  55. /**
  56. * This method was generated by Apache iBATIS ibator.
  57. * This method corresponds to the database table lierda_glid
  58. *
  59. * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
  60. */
  61. int updateByExample(LierdaGlidKey record, LierdaGlidExample example);
  62. }