MassageNoticeScheduleService.java 490 Bytes
package com.pipihelper.project.scheduled;

import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.Scheduled;

/**
 * @Description: TODO
 * @author: charles
 * @date: 2022年10月15日 17:26
 */
public class MassageNoticeScheduleService {

    /**
     * 每周四定时生成要按摩的人员名单,并发送大群和单人消息
     */
    @Async
    @Scheduled(cron = "0 0 10 * * ?")
    public void sendMsgCardToPipiChat(){

    }
}