yantian yue
2023-10-17 487b2f2a353b89ab46cd9b784226b600b7b915b8
提交 | 用户 | 时间
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 }