| | |
| | | import org.springblade.mdm.program.entity.NcProgram; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | /** |
| | | * 没用了,应为在流程图删除了该服务 |
| | | */ |
| | | @Slf4j |
| | | @Component("cureProgramCheckTask") |
| | | public class CureProgramCheckTask { |
| | | |
| | | public void execute(DelegateExecution execution) { |
| | | //固化程序检查有效期, |
| | | //固化程序检查有效期,工序版次是否一致的检查,完全根据程序包名进行检查即可 |
| | | //TODO |
| | | String hasCuredProgram = (String)execution.getVariable("hasCuredProgram"); |
| | | NcProgram ncProgram = (NcProgram)execution.getVariable("curedNcProgram"); |
| | | |
| | | System.out.println("执行服务任务"); |
| | | System.out.println("执行固化程序任务服务"); |
| | | } |
| | | } |