1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-29 21:05:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
Files
bookshelfplus/bookshelfplus/src/main/java/plus/bookshelf/Service/Model/ThirdPartyUserAuthModel.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;
}