调整 User 项目结构
增加管理后台查看 User 分页接口
This commit is contained in:
@@ -5,14 +5,14 @@ package cn.iocoder.mall.user.sdk.context;
|
||||
*/
|
||||
public class UserSecurityContext {
|
||||
|
||||
private final Long uid;
|
||||
private final Integer userId;
|
||||
|
||||
public UserSecurityContext(Long uid) {
|
||||
this.uid = uid;
|
||||
public UserSecurityContext(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUid() {
|
||||
return uid;
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user