XtYhjsDAO.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package com.huimv.xt.dao;
  2. import com.huimv.xt.dataobject.XtYhjsExample;
  3. import com.huimv.xt.dataobject.XtYhjsKey;
  4. import java.util.List;
  5. public interface XtYhjsDAO {
  6. /**
  7. * This method was generated by Apache iBATIS ibator.
  8. * This method corresponds to the database table xt_yhjs
  9. *
  10. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  11. */
  12. int countByExample(XtYhjsExample example);
  13. /**
  14. * This method was generated by Apache iBATIS ibator.
  15. * This method corresponds to the database table xt_yhjs
  16. *
  17. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  18. */
  19. int deleteByExample(XtYhjsExample example);
  20. /**
  21. * This method was generated by Apache iBATIS ibator.
  22. * This method corresponds to the database table xt_yhjs
  23. *
  24. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  25. */
  26. int deleteByPrimaryKey(XtYhjsKey key);
  27. /**
  28. * This method was generated by Apache iBATIS ibator.
  29. * This method corresponds to the database table xt_yhjs
  30. *
  31. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  32. */
  33. void insert(XtYhjsKey record);
  34. /**
  35. * This method was generated by Apache iBATIS ibator.
  36. * This method corresponds to the database table xt_yhjs
  37. *
  38. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  39. */
  40. void insertSelective(XtYhjsKey record);
  41. /**
  42. * This method was generated by Apache iBATIS ibator.
  43. * This method corresponds to the database table xt_yhjs
  44. *
  45. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  46. */
  47. List<XtYhjsKey> selectByExample(XtYhjsExample example);
  48. /**
  49. * This method was generated by Apache iBATIS ibator.
  50. * This method corresponds to the database table xt_yhjs
  51. *
  52. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  53. */
  54. int updateByExampleSelective(XtYhjsKey record, XtYhjsExample example);
  55. /**
  56. * This method was generated by Apache iBATIS ibator.
  57. * This method corresponds to the database table xt_yhjs
  58. *
  59. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  60. */
  61. int updateByExample(XtYhjsKey record, XtYhjsExample example);
  62. /**
  63. * 角色对应的操作用户
  64. * @param id
  65. * @return
  66. */
  67. List<XtYhjsKey> SelectCzyhByJsid(Integer id);
  68. }