/* * Copyright © 2014 YAOCHEN Corporation, All Rights Reserved */ package com.easyooo.framework.cache.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 当同一个属性出现多个注解时,使用该注解包含多个注解 * @author Killer */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface Refrences { Refrence[] value(); }