@@ -133,4 +133,8 @@ public class Account extends BaseEntity {
*/
private String actCode;
+ /**
+ * 谷歌身份认证器
+ */
+ private String googleAuth;
}
@@ -206,4 +206,10 @@ public class AccountView {
@DbField("a.act_code")
+
+ @DbField("a.google_auth")
@@ -188,6 +188,12 @@ public class RenewalView {
@DbField("a.outside_purchase")
private Boolean outsidePurchase;
@DbField("gr.account")
private String grAccount;
@@ -320,6 +320,10 @@ public class CmsAccountServiceImpl extends ServiceImpl<AccountMapper, Account> i
if (special_email_goods_ids.contains(goodsId)) {
String email = part[2];
insert.setEmail(email);
+ if (part.length > 3) {
+ String googleAuth = part[3];
+ insert.setGoogleAuth(googleAuth);
+ }
} else {
//chatGPT 邮箱密码
String gptEmailPwd = part[2];