You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
327 B
13 lines
327 B
2 years ago
|
package com.fr.plugin;
|
||
|
|
||
|
import com.fr.plugin.transform.ExecuteFunctionRecord;
|
||
|
import com.fr.plugin.transform.FunctionRecorder;
|
||
|
|
||
|
@FunctionRecorder
|
||
|
public class FunctionRecoder {
|
||
|
@ExecuteFunctionRecord
|
||
|
public void exe(){
|
||
|
System.out.println("插件功能埋点,虽然不会执行,除非上架应用");
|
||
|
}
|
||
|
}
|