Files
3dplan/ndplannew/src/main/java/com/system/util/bean/NoCopyAttribute.java

12 lines
288 B
Java
Raw Normal View History

2025-07-21 17:30:50 +08:00
package com.system.util.bean;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target( { java.lang.annotation.ElementType.FIELD })
public @interface NoCopyAttribute {
}