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
36 lines
794 B
package com.example.demo.service.coin;
|
|
|
|
import com.example.demo.domain.entity.User;
|
|
import com.example.demo.domain.vo.coin.Gold;
|
|
import com.example.demo.domain.vo.coin.GoldUser;
|
|
import com.example.demo.domain.vo.coin.Result;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName UserService
|
|
* @description:
|
|
* @author: Double
|
|
* @create: 2025−06-25 10:30
|
|
* @Version 1.0
|
|
**/
|
|
|
|
public interface UserService {
|
|
|
|
//查找用户部分信息
|
|
Result selectUser(String jwcode);
|
|
|
|
//查找用户金币
|
|
GoldUser selectgold(String jwcode);
|
|
|
|
//查找用户全部信息
|
|
User selectAllUser(String jwcode);
|
|
|
|
//更新用户的全部金币
|
|
void updateAllGold(User user);
|
|
|
|
//新增用户
|
|
void addUser(User user);
|
|
|
|
//更新用户的首充时间
|
|
void updateFirstRecharge();
|
|
}
|