BusinessProjectMapper.java 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.BusinessProject;
  3. import com.goafanti.common.model.BusinessProjectExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface BusinessProjectMapper {
  7. /**
  8. * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
  9. * @mbg.generated Mon Dec 04 15:29:25 CST 2017
  10. */
  11. long countByExample(BusinessProjectExample example);
  12. /**
  13. * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
  14. * @mbg.generated Mon Dec 04 15:29:25 CST 2017
  15. */
  16. int deleteByExample(BusinessProjectExample example);
  17. /**
  18. * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
  19. * @mbg.generated Mon Dec 04 15:29:25 CST 2017
  20. */
  21. int deleteByPrimaryKey(String id);
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
  24. * @mbg.generated Mon Dec 04 15:29:25 CST 2017
  25. */
  26. int insert(BusinessProject record);
  27. /**
  28. * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
  29. * @mbg.generated Mon Dec 04 15:29:25 CST 2017
  30. */
  31. int insertSelective(BusinessProject record);
  32. /**
  33. * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
  34. * @mbg.generated Mon Dec 04 15:29:25 CST 2017
  35. */
  36. List<BusinessProject> selectByExample(BusinessProjectExample example);
  37. /**
  38. * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
  39. * @mbg.generated Mon Dec 04 15:29:25 CST 2017
  40. */
  41. BusinessProject selectByPrimaryKey(String id);
  42. /**
  43. * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
  44. * @mbg.generated Mon Dec 04 15:29:25 CST 2017
  45. */
  46. int updateByExampleSelective(@Param("record") BusinessProject record,
  47. @Param("example") BusinessProjectExample example);
  48. /**
  49. * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
  50. * @mbg.generated Mon Dec 04 15:29:25 CST 2017
  51. */
  52. int updateByExample(@Param("record") BusinessProject record, @Param("example") BusinessProjectExample example);
  53. /**
  54. * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
  55. * @mbg.generated Mon Dec 04 15:29:25 CST 2017
  56. */
  57. int updateByPrimaryKeySelective(BusinessProject record);
  58. /**
  59. * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
  60. * @mbg.generated Mon Dec 04 15:29:25 CST 2017
  61. */
  62. int updateByPrimaryKey(BusinessProject record);
  63. }