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