//package com.dsh.guns.modular.system.util.task.jobs;
|
//
|
//import com.dsh.guns.modular.system.util.task.base.AbstractJob;
|
//import org.quartz.JobDataMap;
|
//import org.quartz.JobExecutionContext;
|
//import org.quartz.JobExecutionException;
|
//
|
//import java.util.List;
|
//
|
///**
|
// * 发送短信
|
// */
|
//public class SendSms extends AbstractJob {
|
//
|
// public static final String name = "sendSmsJob";
|
//
|
// @Override
|
// public void execute(JobExecutionContext context) throws JobExecutionException {
|
// JobDataMap maps = context.getMergedJobDataMap();
|
//
|
// try {
|
// System.out.println("----定时1秒后发送短信-----");
|
//
|
//
|
// } catch (Exception e) {
|
// e.printStackTrace();
|
// }
|
// }
|
//}
|