|
|
@@ -596,9 +596,11 @@ public class GroupRelationController {
|
|
|
public Result<GptStandbyResp> getGptStandby() {
|
|
|
long userId = StpUserUtil.getLoginIdAsLong();
|
|
|
List<Long> relationUserIdList = userBindRelationService.getRelationUserIdList(userId, null);
|
|
|
+ String condition = " a.created_time < '2023-10-18' and a.account not like '%@rambler.ru%'";
|
|
|
Number number = beanSearcher.searchCount(RenewalView.class, MapUtils.builder()
|
|
|
.field(RenewalView::getUserId, relationUserIdList).op(Operator.InList)
|
|
|
.field(RenewalView::getYhsId, 0)
|
|
|
+ .put("condition", condition)
|
|
|
.field(RenewalView::getExpiryTime).op(Operator.NotNull)
|
|
|
.build());
|
|
|
GptStandbyResp gptStandbyResp = new GptStandbyResp();
|