package zy.cloud.wms.common.service.task; 
 | 
  
 | 
import lombok.extern.slf4j.Slf4j; 
 | 
import org.springframework.stereotype.Component; 
 | 
import org.springframework.transaction.annotation.Transactional; 
 | 
import org.springframework.web.bind.annotation.RestController; 
 | 
  
 | 
/** 
 | 
 * 历史档任务控制器 
 | 
 * Created by vincent on 2020/11/27 
 | 
 */ 
 | 
@Slf4j 
 | 
@Component 
 | 
@RestController 
 | 
public class LogScheduler { 
 | 
  
 | 
    @Transactional 
 | 
//    @PostConstruct 
 | 
    public void custOrderLogExecute(){ 
 | 
  
 | 
    } 
 | 
  
 | 
} 
 |