xiangpei
2024-04-28 3b7d2d743514cf3793c07daa5f0e1d8aca4cd528
1
2
3
4
5
6
7
8
9
10
11
12
package com.ycl.task;
 
import org.springframework.stereotype.Component;
 
 
@Component("checkScore")
public class CheckScore {
    public void check(Integer templateId){
        System.out.println("执行模板---------->"+templateId);
 
    }
}