package com.qianwen.core.tool.beans;
|
|
import java.lang.annotation.Documented;
|
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)
|
@Documented
|
/* loaded from: blade-core-tool-9.3.0.0-SNAPSHOT.jar:org/springblade/core/tool/beans/CopyProperty.class */
|
public @interface CopyProperty {
|
String value() default "";
|
|
boolean ignore() default false;
|
}
|