龚焕茏
2024-04-30 e41f7a8cb42d189d7af204499e64f12a9ac553b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ycl.task;
 
import com.ycl.platform.domain.entity.CheckTemplate;
import com.ycl.platform.service.ICheckTemplateRuleService;
import com.ycl.platform.service.ICheckTemplateService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
 
 
@Component("checkScore")
@Slf4j
public class CheckScore {
    @Autowired
    private ICheckTemplateService templateService;
    @Autowired
    private ICheckTemplateRuleService templateRuleService;
 
    public void check(Integer templateId){
        log.info("执行考核模板---------->{}",templateId);
        CheckTemplate checkTemplate = templateService.getById(templateId);
        
 
 
    }
}