java110
2022-07-06 92ed53e44fb2da1f91b8fb9932af8ff433febe83
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.java110.core.annotation;
 
 
import org.springframework.stereotype.Component;
 
import java.lang.annotation.*;
 
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Java110Transactional {
}