/** * */ package cn.com.lzt.purchase.dto; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Retention; import java.lang.annotation.Target; @Retention(RUNTIME) @Target(FIELD) /** * @author xzx * * 2019年8月5日 * */ public @interface GoodsCode { String value(); }