
com.magictools.core.annotation.Alias Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magic-tools-core Show documentation
Show all versions of magic-tools-core Show documentation
magic-tools核心,包括集合、字符串、Bean等工具
The newest version!
package com.magictools.core.annotation;
import java.lang.annotation.*;
/**
* 别名注解,使用此注解的字段、方法、参数等会有一个别名,用于Bean拷贝、Bean转Map等
*
* @author Looly
* @since 5.1.1
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER})
public @interface Alias {
/**
* 别名值,即使用此注解要替换成的别名名称
*
* @return 别名值
*/
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy