love.keeping.starter.web.annotations.convert.IgnoreConvert Maven / Gradle / Ivy
The newest version!
package love.keeping.starter.web.annotations.convert;
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;
/**
* Dto转Bo时,是否忽略转换
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface IgnoreConvert {
}