XtJsqxDAO.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.huimv.xt.dao;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.huimv.xt.dataobject.XtJsqxExample;
  5. import com.huimv.xt.dataobject.XtJsqxKey;
  6. public interface XtJsqxDAO {
  7. /**
  8. * This method was generated by Apache iBATIS ibator.
  9. * This method corresponds to the database table xt_jsqx
  10. *
  11. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  12. */
  13. int countByExample(XtJsqxExample example);
  14. /**
  15. * This method was generated by Apache iBATIS ibator.
  16. * This method corresponds to the database table xt_jsqx
  17. *
  18. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  19. */
  20. int deleteByExample(XtJsqxExample example);
  21. /**
  22. * This method was generated by Apache iBATIS ibator.
  23. * This method corresponds to the database table xt_jsqx
  24. *
  25. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  26. */
  27. int deleteByPrimaryKey(XtJsqxKey key);
  28. /**
  29. * This method was generated by Apache iBATIS ibator.
  30. * This method corresponds to the database table xt_jsqx
  31. *
  32. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  33. */
  34. void insert(XtJsqxKey record);
  35. /**
  36. * This method was generated by Apache iBATIS ibator.
  37. * This method corresponds to the database table xt_jsqx
  38. *
  39. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  40. */
  41. void insertSelective(XtJsqxKey record);
  42. /**
  43. * This method was generated by Apache iBATIS ibator.
  44. * This method corresponds to the database table xt_jsqx
  45. *
  46. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  47. */
  48. List<XtJsqxKey> selectByExample(XtJsqxExample example);
  49. /**
  50. * This method was generated by Apache iBATIS ibator.
  51. * This method corresponds to the database table xt_jsqx
  52. *
  53. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  54. */
  55. int updateByExampleSelective(XtJsqxKey record, XtJsqxExample example);
  56. /**
  57. * This method was generated by Apache iBATIS ibator.
  58. * This method corresponds to the database table xt_jsqx
  59. *
  60. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  61. */
  62. int updateByExample(XtJsqxKey record, XtJsqxExample example);
  63. public List<XtJsqxKey> selectByParam(Map<String, Object> param);
  64. }