2
0

feat: 流量和余额不足提醒

This commit is contained in:
caiyuchao
2025-06-16 18:00:33 +08:00
parent a2cb97ce4c
commit b70ac9d5cc
16 changed files with 239 additions and 48 deletions

View File

@@ -0,0 +1,25 @@
package org.wfc.job.task;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.wfc.common.core.domain.R;
import org.wfc.user.api.RemoteUUserService;
/**
* @description: 警报任务
* @author: cyc
* @since: 2025-06-16
*/
@Slf4j
@Component("reminderTask")
public class ReminderTask {
@Autowired
private RemoteUUserService remoteUUserService;
public R<Boolean> reminderJob() {
return remoteUUserService.sendReminderEMail();
}
}