yantian yue
2023-10-20 a7c91f14d9a671a5ad1def32e2a88d4938ecba33
提交 | 用户 | 时间
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 }