Test1
Test2
Test3
Test3
Hello World
This is a test!
package com.caleb.aos.core.annotation;
import org.springframework.stereotype.Component;
import java.lang.annotation.*;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Component
@Documented
public @interface Mapper
{
String value();
}
网友评论