OrganizationYearProjectMapper.java 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.OrganizationYearProject;
  3. import com.goafanti.common.model.OrganizationYearProjectExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface OrganizationYearProjectMapper {
  7. /**
  8. * This method was generated by MyBatis Generator.
  9. * This method corresponds to the database table organization_year_project
  10. *
  11. * @mbg.generated Fri Jul 20 16:32:47 CST 2018
  12. */
  13. long countByExample(OrganizationYearProjectExample example);
  14. /**
  15. * This method was generated by MyBatis Generator.
  16. * This method corresponds to the database table organization_year_project
  17. *
  18. * @mbg.generated Fri Jul 20 16:32:47 CST 2018
  19. */
  20. int deleteByExample(OrganizationYearProjectExample example);
  21. /**
  22. * This method was generated by MyBatis Generator.
  23. * This method corresponds to the database table organization_year_project
  24. *
  25. * @mbg.generated Fri Jul 20 16:32:47 CST 2018
  26. */
  27. int deleteByPrimaryKey(String id);
  28. /**
  29. * This method was generated by MyBatis Generator.
  30. * This method corresponds to the database table organization_year_project
  31. *
  32. * @mbg.generated Fri Jul 20 16:32:47 CST 2018
  33. */
  34. int insert(OrganizationYearProject record);
  35. /**
  36. * This method was generated by MyBatis Generator.
  37. * This method corresponds to the database table organization_year_project
  38. *
  39. * @mbg.generated Fri Jul 20 16:32:47 CST 2018
  40. */
  41. int insertSelective(OrganizationYearProject record);
  42. /**
  43. * This method was generated by MyBatis Generator.
  44. * This method corresponds to the database table organization_year_project
  45. *
  46. * @mbg.generated Fri Jul 20 16:32:47 CST 2018
  47. */
  48. List<OrganizationYearProject> selectByExample(OrganizationYearProjectExample example);
  49. /**
  50. * This method was generated by MyBatis Generator.
  51. * This method corresponds to the database table organization_year_project
  52. *
  53. * @mbg.generated Fri Jul 20 16:32:47 CST 2018
  54. */
  55. OrganizationYearProject selectByPrimaryKey(String id);
  56. /**
  57. * This method was generated by MyBatis Generator.
  58. * This method corresponds to the database table organization_year_project
  59. *
  60. * @mbg.generated Fri Jul 20 16:32:47 CST 2018
  61. */
  62. int updateByExampleSelective(@Param("record") OrganizationYearProject record, @Param("example") OrganizationYearProjectExample example);
  63. /**
  64. * This method was generated by MyBatis Generator.
  65. * This method corresponds to the database table organization_year_project
  66. *
  67. * @mbg.generated Fri Jul 20 16:32:47 CST 2018
  68. */
  69. int updateByExample(@Param("record") OrganizationYearProject record, @Param("example") OrganizationYearProjectExample example);
  70. /**
  71. * This method was generated by MyBatis Generator.
  72. * This method corresponds to the database table organization_year_project
  73. *
  74. * @mbg.generated Fri Jul 20 16:32:47 CST 2018
  75. */
  76. int updateByPrimaryKeySelective(OrganizationYearProject record);
  77. /**
  78. * This method was generated by MyBatis Generator.
  79. * This method corresponds to the database table organization_year_project
  80. *
  81. * @mbg.generated Fri Jul 20 16:32:47 CST 2018
  82. */
  83. int updateByPrimaryKey(OrganizationYearProject record);
  84. int checkYear(Integer year);
  85. int checkUser(String uid);
  86. }