提交 | 用户 | 时间 | ||
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 | } |