调整 User 项目结构

增加管理后台查看 User 分页接口
This commit is contained in:
YunaiV
2019-03-10 19:07:00 +08:00
parent 9d29b71a7b
commit 1afea13f56
37 changed files with 785 additions and 96 deletions

View File

@@ -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;
}
}