懒羊羊
2023-10-17 5d91e0a52879bf16511817b3cd20496f07717ab1
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();
}