package com.mes.job;
|
|
import com.mes.tempering_record.service.TemperingRecordService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.scheduling.annotation.Scheduled;
|
|
/**
|
* @Author : zhoush
|
* @Date: 2024/7/17 12:47
|
* @Description:
|
*/
|
public class TemperingTask {
|
|
@Autowired
|
private TemperingRecordService temporalRecordService;
|
|
|
@Scheduled(fixedDelay = 1000)
|
public void temperingGlassBefore() {
|
//todo:获取钢化版图中状态为2的(进炉完成的玻璃信息) 且不存在钢化记录表内的
|
|
|
}
|
|
@Scheduled(fixedDelay = 1000)
|
public void temperingGlassAfter() {
|
|
}
|
}
|