| 1234567891011121314151617181920212223242526 |
- package com.uas.eis.task;
- import com.uas.eis.service.SendArbillmailService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.scheduling.annotation.Scheduled;
- import org.springframework.stereotype.Component;
- /**
- * Created by luhg on 2018/4/26.
- * 销售订单
- */
- @Component
- public class ArbillTask {
- @Autowired
- SendArbillmailService sendArbillmailService;
- @Scheduled(cron = "0 10 14 * * ?")
- public void sendArbill_sz() {
- sendArbillmailService.send_abillmailbymaster_sz();
- }
- @Scheduled(cron = "0 15 14 * * ?")
- public void sendArbill_hk() {
- sendArbillmailService.send_abillmailbymaster_hk();
- }
- }
|