UserFollowMapper.java 2.8 KB

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