mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-09-29 21:05:14 +08:00
16 lines
247 B
Java
16 lines
247 B
Java
package plus.bookshelf.Service.Model;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class ThirdPartyUserAuthModel {
|
|
|
|
private Integer id;
|
|
|
|
// 用户 Id
|
|
private String userId;
|
|
|
|
// 用户第三方授权 Id
|
|
private String thirdPartyUserId;
|
|
}
|