From 143d56e6ef42668c842bd871f4e4ac678fc567ee Mon Sep 17 00:00:00 2001 From: liulin <lin.liu@aliyun.com> Date: 星期三, 07 八月 2024 10:34:57 +0800 Subject: [PATCH] 处理token --- src/main/java/com/lunhan/xxx/common/jwt/LoginUserDTO.java | 49 ------------------------------------------------- 1 files changed, 0 insertions(+), 49 deletions(-) diff --git a/src/main/java/com/lunhan/xxx/common/jwt/LoginUserDTO.java b/src/main/java/com/lunhan/xxx/common/jwt/LoginUserDTO.java index fb12bf3..b8ca96c 100644 --- a/src/main/java/com/lunhan/xxx/common/jwt/LoginUserDTO.java +++ b/src/main/java/com/lunhan/xxx/common/jwt/LoginUserDTO.java @@ -39,23 +39,6 @@ * 拥有角色-名称列表 */ private List<String> listRoleName; - /** - * 所属客户公司(当 userType=3 时) - */ - private Long customerCompany; - /** - * 所属客户公司名称 - */ - private String customerCompanyName; - - /** - * 客户公司所属区域 - */ - private String customerRegion; - /** - * 是否是子帐号(当 userType=3 时) - */ - private Integer isChild; public String getToken() { return token; @@ -127,37 +110,5 @@ public void setListRoleName(List<String> listRoleName) { this.listRoleName = listRoleName; - } - - public Long getCustomerCompany() { - return customerCompany; - } - - public void setCustomerCompany(Long customerCompany) { - this.customerCompany = customerCompany; - } - - public String getCustomerCompanyName() { - return customerCompanyName; - } - - public void setCustomerCompanyName(String customerCompanyName) { - this.customerCompanyName = customerCompanyName; - } - - public String getCustomerRegion() { - return customerRegion; - } - - public void setCustomerRegion(String customerRegion) { - this.customerRegion = customerRegion; - } - - public Integer getIsChild() { - return isChild; - } - - public void setIsChild(Integer isChild) { - this.isChild = isChild; } } -- Gitblit v1.9.3