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

package com.example.demo.service;
import com.example.demo.domain.vo.Gold;
import com.example.demo.domain.vo.GoldUser;
/**
* @program: gold-java
* @ClassName UserService
* @description:
* @author: Double
* @create: 2025−06-25 10:30
* @Version 1.0
**/
public interface UserService {
GoldUser selectUser(String jwcode);
GoldUser selectgold(String jwcode);
}