yantian yue
2023-10-17 487b2f2a353b89ab46cd9b784226b600b7b915b8
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();
}