Commit 26cd5abf171d30e747bb39edd7ee2281e9680747
Merge branch '20220429' into 'master'
20220429 See merge request huang/thingsboard3.3.2!91
Showing
1 changed file
with
24 additions
and
0 deletions
application/src/main/java/org/thingsboard/server/service/security/auth/yunteng/YtLoginResponse.java
0 → 100644
1 | +package org.thingsboard.server.service.security.auth.yunteng; | |
2 | + | |
3 | +import lombok.AllArgsConstructor; | |
4 | +import lombok.Data; | |
5 | +import lombok.EqualsAndHashCode; | |
6 | +import lombok.experimental.Accessors; | |
7 | +import org.thingsboard.server.service.security.auth.rest.LoginResponse; | |
8 | + | |
9 | +/** | |
10 | + * @version V1.0 | |
11 | + * @Description : | |
12 | + * 1.其它地方抛出异常,交由控制层统一处理 | |
13 | + * 2.服务层注意持久化的事务管理 | |
14 | + * @Dependency: 依赖包 | |
15 | + * @Author: junlianglee | |
16 | + * @Date Created in 2022/4/29$ | |
17 | + * @Copyright 2016-2018 - Powered By 李唐源研发中心 | |
18 | + */ | |
19 | + | |
20 | +@Data | |
21 | +@Accessors(chain = true) | |
22 | +public class YtLoginResponse extends LoginResponse { | |
23 | + private String thirdUserId; | |
24 | +} | ... | ... |