Forráskód Böngészése

gpt 2月的独立账号可看到邮箱密码

zoujiajian 1 éve
szülő
commit
5306d52ee9

+ 5 - 0
netflix-dao/src/main/java/com/cyksj/model/request/AccountGroupsReq.java

@@ -68,4 +68,9 @@ public class AccountGroupsReq {
 	 * 激活码
 	 */
 	private String actCode;
+
+	/**
+	 * 邮箱密码
+	 */
+	private String gptEmailPwd;
 }

+ 7 - 2
netflix-service/src/main/java/com/cyksj/service/relation/impl/GroupRelationFrontServiceImpl.java

@@ -252,8 +252,13 @@ public class GroupRelationFrontServiceImpl implements GroupRelationFrontService
 					ticket.setAccount(null);
 					ticket.setPassword(null);
 				}
-				if (ticket.getGoodsId() != 30l) {
-					ticket.setGptEmailPwd(null);
+				//gpt 2月的独立账号可看到邮箱密码
+				if (ticket.getGoodsId() == 18l && ticket.getNum() == 1 && ticket.getAccount() != null && ticket.getCreatedTime().compareTo(DateUtil.parse("2025-02-01")) > 0) {
+
+				} else {
+					if (ticket.getGoodsId() != 30l) {
+						ticket.setGptEmailPwd(null);
+					}
 				}
 				if (isLoginPopularize != null && isLoginPopularize) {
 					GoodsDonViews views = beanSearcher.searchFirst(GoodsDonViews.class, MapUtils.builder().field(GoodsDonViews::getId, ticket.getGoodsId()).build());