调整文件位置

This commit is contained in:
kehaoyuan
2019-06-06 17:31:05 +08:00
parent b68f9be8dd
commit 1b27f481ba
3 changed files with 3 additions and 2 deletions

View File

@ -0,0 +1,11 @@
package com.gh.common.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Synchronize {
}