新版仿ok交易所-后端
peter
2025-09-20 126abb3e5a1ab5d6454859575d7ab0b516ee733d
1
2
3
4
5
6
7
8
9
10
package com.yami.trading.api.service;
 
import com.yami.trading.bean.model.User;
 
public interface UserCacheService {
 
    User currentUser();
    boolean updateUser(User user);
 
}