1
dd
2025-11-09 d3f7b98ddd318dda7bb1e979ba731d5064b1815d
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);
 
}