| 1234567891011121314151617181920212223 |
- /**
- *
- */
- 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();
- }
|