|
|
@@ -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());
|