You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
794 B

1 month ago
3 weeks ago
1 month ago
2 months ago
1 month ago
1 month ago
1 month ago
1 month ago
  1. package com.example.demo.service.coin;
  2. import com.example.demo.domain.entity.User;
  3. import com.example.demo.domain.vo.coin.Gold;
  4. import com.example.demo.domain.vo.coin.GoldUser;
  5. import com.example.demo.domain.vo.coin.Result;
  6. /**
  7. * @program: gold-java
  8. * @ClassName UserService
  9. * @description:
  10. * @author: Double
  11. * @create: 202506-25 10:30
  12. * @Version 1.0
  13. **/
  14. public interface UserService {
  15. //查找用户部分信息
  16. Result selectUser(String jwcode);
  17. //查找用户金币
  18. GoldUser selectgold(String jwcode);
  19. //查找用户全部信息
  20. User selectAllUser(String jwcode);
  21. //更新用户的全部金币
  22. void updateAllGold(User user);
  23. //新增用户
  24. void addUser(User user);
  25. //更新用户的首充时间
  26. void updateFirstRecharge();
  27. }