UserMapper.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package com.usoft.sso.dal.mapper;
  2. import com.usoft.sso.dal.entity.User;
  3. public interface UserMapper {
  4. /**
  5. * deleteByPrimaryKey
  6. *
  7. * @param id
  8. * @return int
  9. */
  10. int deleteByPrimaryKey(Integer id);
  11. /**
  12. * insert
  13. *
  14. * @param record
  15. * @return int
  16. */
  17. int insert(User record);
  18. /**
  19. * insertSelective
  20. *
  21. * @param record
  22. * @return int
  23. */
  24. int insertSelective(User record);
  25. /**
  26. * selectByPrimaryKey
  27. *
  28. * @param id
  29. * @return User
  30. */
  31. User selectByPrimaryKey(Integer id);
  32. /**
  33. * updateByPrimaryKeySelective
  34. *
  35. * @param record
  36. * @return int
  37. */
  38. int updateByPrimaryKeySelective(User record);
  39. /**
  40. * updateByPrimaryKey
  41. *
  42. * @param record
  43. * @return int
  44. */
  45. int updateByPrimaryKey(User record);
  46. /**
  47. * 通过userUU查找用户信息
  48. *
  49. * @param useruu
  50. * @return
  51. */
  52. User selectByUseruu(Long useruu);
  53. /**
  54. * 通过请求值更新用户信息
  55. *
  56. * @param useruu
  57. * @return
  58. */
  59. int updateByUseruuKeySelective(User useruu);
  60. }