DemandCollectionMapper.java 2.9 KB

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