This commit is contained in:
2023-06-08 15:00:30 +08:00
parent f89152fe86
commit bdc71e8690
7 changed files with 70 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
package com.jsowell.adapay.vo;
import lombok.*;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class AdapayMemberInfoVO {
// 运营商id
private String merchantId;
// 地址
private String location;
// 电子邮箱
private String email;
// 性别
private String gender;
// 昵称
private String nickname;
}