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.

19 lines
376 B

1 week ago
1 week ago
  1. package com.example.demo.service;
  2. import com.example.demo.domain.vo.Gold;
  3. import com.example.demo.domain.vo.GoldUser;
  4. /**
  5. * @program: gold-java
  6. * @ClassName UserService
  7. * @description:
  8. * @author: Double
  9. * @create: 202506-25 10:30
  10. * @Version 1.0
  11. **/
  12. public interface UserService {
  13. GoldUser selectUser(String jwcode);
  14. GoldUser selectgold(String jwcode);
  15. }