DemandFollowDetailMapper.java 2.9 KB

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