XtLsjlDAO.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. package com.huimv.xt.dao;
  2. import com.huimv.xt.dataobject.XtLsjl;
  3. import com.huimv.xt.dataobject.XtLsjlExample;
  4. import java.util.List;
  5. public interface XtLsjlDAO {
  6. /**
  7. * This method was generated by Apache iBATIS ibator.
  8. * This method corresponds to the database table xt_lsjl
  9. *
  10. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  11. */
  12. int countByExample(XtLsjlExample example);
  13. /**
  14. * This method was generated by Apache iBATIS ibator.
  15. * This method corresponds to the database table xt_lsjl
  16. *
  17. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  18. */
  19. int deleteByExample(XtLsjlExample example);
  20. /**
  21. * This method was generated by Apache iBATIS ibator.
  22. * This method corresponds to the database table xt_lsjl
  23. *
  24. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  25. */
  26. int deleteByPrimaryKey(Integer id);
  27. /**
  28. * This method was generated by Apache iBATIS ibator.
  29. * This method corresponds to the database table xt_lsjl
  30. *
  31. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  32. */
  33. void insert(XtLsjl record);
  34. /**
  35. * This method was generated by Apache iBATIS ibator.
  36. * This method corresponds to the database table xt_lsjl
  37. *
  38. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  39. */
  40. void insertSelective(XtLsjl record);
  41. /**
  42. * This method was generated by Apache iBATIS ibator.
  43. * This method corresponds to the database table xt_lsjl
  44. *
  45. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  46. */
  47. List<XtLsjl> selectByExampleWithBLOBs(XtLsjlExample example);
  48. /**
  49. * This method was generated by Apache iBATIS ibator.
  50. * This method corresponds to the database table xt_lsjl
  51. *
  52. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  53. */
  54. List<XtLsjl> selectByExampleWithoutBLOBs(XtLsjlExample example);
  55. /**
  56. * This method was generated by Apache iBATIS ibator.
  57. * This method corresponds to the database table xt_lsjl
  58. *
  59. * @ibatorgenerated Tue Dec 09 09:03:40 CST 2014
  60. */
  61. XtLsjl selectByPrimaryKey(Integer id);
  62. /**
  63. * This method was generated by Apache iBATIS ibator.
  64. * This method corresponds to the database table xt_lsjl
  65. *
  66. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  67. */
  68. int updateByExampleSelective(XtLsjl record, XtLsjlExample example);
  69. /**
  70. * This method was generated by Apache iBATIS ibator.
  71. * This method corresponds to the database table xt_lsjl
  72. *
  73. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  74. */
  75. int updateByExampleWithBLOBs(XtLsjl record, XtLsjlExample example);
  76. /**
  77. * This method was generated by Apache iBATIS ibator.
  78. * This method corresponds to the database table xt_lsjl
  79. *
  80. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  81. */
  82. int updateByExampleWithoutBLOBs(XtLsjl record, XtLsjlExample example);
  83. /**
  84. * This method was generated by Apache iBATIS ibator.
  85. * This method corresponds to the database table xt_lsjl
  86. *
  87. * @ibatorgenerated Tue Dec 09 09:03:40 CST 2014
  88. */
  89. int updateByPrimaryKeySelective(XtLsjl record);
  90. /**
  91. * This method was generated by Apache iBATIS ibator.
  92. * This method corresponds to the database table xt_lsjl
  93. *
  94. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  95. */
  96. int updateByPrimaryKeyWithBLOBs(XtLsjl record);
  97. /**
  98. * This method was generated by Apache iBATIS ibator.
  99. * This method corresponds to the database table xt_lsjl
  100. *
  101. * @ibatorgenerated Tue Dec 09 09:03:40 CST 2014
  102. */
  103. int updateByPrimaryKeyWithoutBLOBs(XtLsjl record);
  104. }