懒羊羊
2023-10-17 5d91e0a52879bf16511817b3cd20496f07717ab1
提交 | 用户 | 时间
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 }