yantian yue
2023-10-20 4f58ba24b9a7e24dc38aa8eb9ca0b92c83e161ac
1
2
3
4
5
6
7
8
9
package cn.stylefeng.guns.config;
 
import cn.stylefeng.guns.base.auth.context.LoginContextHolder;
 
public interface CommonProperty {
    public String userName = LoginContextHolder.getContext().getUser().getName();
 
    public Long userId = LoginContextHolder.getContext().getUserId();
}