DaQydaDAO.java 2.8 KB

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