DaDwdaDAO.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package com.huimv.da.dao;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.huimv.da.dataobject.DaDwda;
  5. import com.huimv.da.dataobject.DaDwdaExample;
  6. public interface DaDwdaDAO {
  7. /**
  8. * This method was generated by Apache iBATIS ibator.
  9. * This method corresponds to the database table da_dwda
  10. *
  11. * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015
  12. */
  13. int countByExample(DaDwdaExample example);
  14. /**
  15. * This method was generated by Apache iBATIS ibator.
  16. * This method corresponds to the database table da_dwda
  17. *
  18. * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015
  19. */
  20. int deleteByExample(DaDwdaExample example);
  21. /**
  22. * This method was generated by Apache iBATIS ibator.
  23. * This method corresponds to the database table da_dwda
  24. *
  25. * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015
  26. */
  27. int deleteByPrimaryKey(Integer id);
  28. /**
  29. * This method was generated by Apache iBATIS ibator.
  30. * This method corresponds to the database table da_dwda
  31. *
  32. * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015
  33. */
  34. void insert(DaDwda record);
  35. /**
  36. * This method was generated by Apache iBATIS ibator.
  37. * This method corresponds to the database table da_dwda
  38. *
  39. * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015
  40. */
  41. void insertSelective(DaDwda record);
  42. /**
  43. * This method was generated by Apache iBATIS ibator.
  44. * This method corresponds to the database table da_dwda
  45. *
  46. * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015
  47. */
  48. List<DaDwda> selectByExample(DaDwdaExample example);
  49. /**
  50. * This method was generated by Apache iBATIS ibator.
  51. * This method corresponds to the database table da_dwda
  52. *
  53. * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015
  54. */
  55. DaDwda selectByPrimaryKey(Integer id);
  56. /**
  57. * This method was generated by Apache iBATIS ibator.
  58. * This method corresponds to the database table da_dwda
  59. *
  60. * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015
  61. */
  62. int updateByExampleSelective(DaDwda record, DaDwdaExample example);
  63. /**
  64. * This method was generated by Apache iBATIS ibator.
  65. * This method corresponds to the database table da_dwda
  66. *
  67. * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015
  68. */
  69. int updateByExample(DaDwda record, DaDwdaExample example);
  70. /**
  71. * This method was generated by Apache iBATIS ibator.
  72. * This method corresponds to the database table da_dwda
  73. *
  74. * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015
  75. */
  76. int updateByPrimaryKeySelective(DaDwda record);
  77. /**
  78. * This method was generated by Apache iBATIS ibator.
  79. * This method corresponds to the database table da_dwda
  80. *
  81. * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015
  82. */
  83. int updateByPrimaryKey(DaDwda record);
  84. /**
  85. * 查询一定时间内的未访问数
  86. * @param paramMap
  87. * @return
  88. */
  89. List<DaDwda> selectWfwByParam(Map<String, Object> paramMap);
  90. public int selectCountWfwByParam(Map<String, Object> paramMap);
  91. }