DpSjlrsyDAO.java 2.9 KB

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