DaJqdaDAO.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package com.huimv.da.dao;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.huimv.da.dataobject.DaJqda;
  5. import com.huimv.da.dataobject.DaJqdaExample;
  6. public interface DaJqdaDAO {
  7. /**
  8. * This method was generated by Apache iBATIS ibator.
  9. * This method corresponds to the database table da_jqda
  10. *
  11. * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014
  12. */
  13. int countByExample(DaJqdaExample example);
  14. /**
  15. * This method was generated by Apache iBATIS ibator.
  16. * This method corresponds to the database table da_jqda
  17. *
  18. * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014
  19. */
  20. int deleteByExample(DaJqdaExample example);
  21. /**
  22. * This method was generated by Apache iBATIS ibator.
  23. * This method corresponds to the database table da_jqda
  24. *
  25. * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014
  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_jqda
  31. *
  32. * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014
  33. */
  34. void insert(DaJqda record);
  35. /**
  36. * This method was generated by Apache iBATIS ibator.
  37. * This method corresponds to the database table da_jqda
  38. *
  39. * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014
  40. */
  41. void insertSelective(DaJqda record);
  42. /**
  43. * This method was generated by Apache iBATIS ibator.
  44. * This method corresponds to the database table da_jqda
  45. *
  46. * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014
  47. */
  48. List<DaJqda> selectByExample(DaJqdaExample example);
  49. /**
  50. * This method was generated by Apache iBATIS ibator.
  51. * This method corresponds to the database table da_jqda
  52. *
  53. * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014
  54. */
  55. DaJqda selectByPrimaryKey(Integer id);
  56. /**
  57. * This method was generated by Apache iBATIS ibator.
  58. * This method corresponds to the database table da_jqda
  59. *
  60. * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014
  61. */
  62. int updateByExampleSelective(DaJqda record, DaJqdaExample example);
  63. /**
  64. * This method was generated by Apache iBATIS ibator.
  65. * This method corresponds to the database table da_jqda
  66. *
  67. * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014
  68. */
  69. int updateByExample(DaJqda record, DaJqdaExample example);
  70. /**
  71. * This method was generated by Apache iBATIS ibator.
  72. * This method corresponds to the database table da_jqda
  73. *
  74. * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014
  75. */
  76. int updateByPrimaryKeySelective(DaJqda record);
  77. /**
  78. * This method was generated by Apache iBATIS ibator.
  79. * This method corresponds to the database table da_jqda
  80. *
  81. * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014
  82. */
  83. int updateByPrimaryKey(DaJqda record);
  84. /**
  85. * 根据jqid选择当前栏期
  86. */
  87. int selectDqlqByParam(Map<String, Object> paramMap);
  88. /**
  89. * 获取最大JQID
  90. * @return
  91. */
  92. public String selectMaxJqid();
  93. public List<DaJqda> getJqdaByParam(Map<String, Object> paramMap);
  94. public int updateByXlh(String xlh);
  95. }