XtYxcsYaDAO.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package com.huimv.xt.dao;
  2. import com.huimv.xt.dataobject.XtYxcsYa;
  3. import com.huimv.xt.dataobject.XtYxcsYaExample;
  4. import java.util.List;
  5. public interface XtYxcsYaDAO {
  6. /**
  7. * This method was generated by Apache iBATIS ibator.
  8. * This method corresponds to the database table xt_hk_yxcs_bys_ya
  9. *
  10. * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
  11. */
  12. int countByExample(XtYxcsYaExample example);
  13. /**
  14. * This method was generated by Apache iBATIS ibator.
  15. * This method corresponds to the database table xt_hk_yxcs_bys_ya
  16. *
  17. * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
  18. */
  19. int deleteByExample(XtYxcsYaExample example);
  20. /**
  21. * This method was generated by Apache iBATIS ibator.
  22. * This method corresponds to the database table xt_hk_yxcs_bys_ya
  23. *
  24. * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
  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_hk_yxcs_bys_ya
  30. *
  31. * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
  32. */
  33. void insert(XtYxcsYa record);
  34. /**
  35. * This method was generated by Apache iBATIS ibator.
  36. * This method corresponds to the database table xt_hk_yxcs_bys_ya
  37. *
  38. * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
  39. */
  40. void insertSelective(XtYxcsYa record);
  41. /**
  42. * This method was generated by Apache iBATIS ibator.
  43. * This method corresponds to the database table xt_hk_yxcs_bys_ya
  44. *
  45. * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
  46. */
  47. List<XtYxcsYa> selectByExample(XtYxcsYaExample example);
  48. /**
  49. * This method was generated by Apache iBATIS ibator.
  50. * This method corresponds to the database table xt_hk_yxcs_bys_ya
  51. *
  52. * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
  53. */
  54. XtYxcsYa selectByPrimaryKey(Integer id);
  55. /**
  56. * This method was generated by Apache iBATIS ibator.
  57. * This method corresponds to the database table xt_hk_yxcs_bys_ya
  58. *
  59. * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
  60. */
  61. int updateByExampleSelective(XtYxcsYa record, XtYxcsYaExample example);
  62. /**
  63. * This method was generated by Apache iBATIS ibator.
  64. * This method corresponds to the database table xt_hk_yxcs_bys_ya
  65. *
  66. * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
  67. */
  68. int updateByExample(XtYxcsYa record, XtYxcsYaExample example);
  69. /**
  70. * This method was generated by Apache iBATIS ibator.
  71. * This method corresponds to the database table xt_hk_yxcs_bys_ya
  72. *
  73. * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
  74. */
  75. int updateByPrimaryKeySelective(XtYxcsYa record);
  76. /**
  77. * This method was generated by Apache iBATIS ibator.
  78. * This method corresponds to the database table xt_hk_yxcs_bys_ya
  79. *
  80. * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
  81. */
  82. int updateByPrimaryKey(XtYxcsYa record);
  83. /**
  84. * 批量作废
  85. */
  86. public void batchUpdateHkyxcsyaByList(List<XtYxcsYa> yxcsYaList);
  87. }