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.

34 lines
693 B

2 months ago
2 months ago
  1. package com.example.demo.mapper;
  2. import com.example.demo.domain.entity.User;
  3. import com.example.demo.domain.vo.Gold;
  4. import com.example.demo.domain.vo.GoldUser;
  5. import org.apache.ibatis.annotations.Mapper;
  6. /**
  7. * @program: gold-java
  8. * @ClassName UserMapper
  9. * @description:
  10. * @author: Double
  11. * @create: 202506-25 10:40
  12. * @Version 1.0
  13. **/
  14. @Mapper
  15. public interface UserMapper {
  16. GoldUser selectUser(String jwcode);
  17. GoldUser selectGold(String jwcode);
  18. void updateGold(User user);
  19. User selectAllUser(String jwcode);
  20. //查询充值次数
  21. Integer selectRechargeNumByJwcode(Integer jwcode);
  22. void updateAllGold(User user);
  23. void addUser(User user);
  24. }