You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
624 B
27 lines
624 B
package com.mh.quartz.task; |
|
|
|
import com.mh.system.service.report.IReportSysService; |
|
import org.springframework.stereotype.Component; |
|
|
|
/** |
|
* @author LJF |
|
* @version 1.0 |
|
* @project EEMCS |
|
* @description 冷水机组定时任务 |
|
* @date 2025-08-13 17:22:09 |
|
*/ |
|
@Component("chillersTask") |
|
public class ChillersTask { |
|
|
|
private final IReportSysService reportSysService; |
|
|
|
public ChillersTask(IReportSysService reportSysService) { |
|
this.reportSysService = reportSysService; |
|
} |
|
|
|
public void createSysRunParam() { |
|
// 定时执行运行脚本 |
|
reportSysService.execProSysRunParamHis(); |
|
} |
|
|
|
}
|
|
|