com.github.andyshao.util.annotation.CopyConvertor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.util.annotation;
import com.github.andyshao.util.EntityOperation.PropertyConvert;
import java.lang.annotation.*;
/**
* Copy convertor annotation
*/
@Target({ElementType.FIELD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface CopyConvertor {
/**
* convertor
* @return {@link PropertyConvert}
*/
Class convertor();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy