Starrier/commons

View on GitHub
src/main/java/org/starrier/common/annotation/methodcount/MethodCount.java

Summary

Maintainability
A
0 mins
Test Coverage
package org.starrier.common.annotation.methodcount;
 
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
 
/**
* @author starrier
* @date 2021/1/4
*/
@Documented
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface MethodCount {
 
 
}