会员调整

This commit is contained in:
张松
2025-09-23 14:38:03 +08:00
parent fc2757ff17
commit 9f9b292919
6 changed files with 10 additions and 10 deletions

View File

@@ -38,7 +38,7 @@ public class MemberDeliverTask {
// @Scheduled(cron = "0 0 1 * * ? ")
public void run() {
shopUserService.list(new QueryWrapper().eq(ShopUser::getIsVip, 1).lt(ShopUser::getNextDeliverTime, DateUtil.date().toLocalDateTime())).forEach(item -> {
memberConfigService.deliver(item.getShopId(), item.getUserId(), TableValueConstant.MemberExpFlow.Type.MEMBER_TASK, null, null, null);
memberConfigService.deliver(item.getSourceShopId(), item.getUserId(), TableValueConstant.MemberExpFlow.Type.MEMBER_TASK, null, null, null);
});
}