SjRcssjDAO.java 3.1 KB

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