Files
jshERP/jshERP-boot/src/main/java/com/jsh/erp/service/ResourceInfo.java
2021-04-07 23:53:57 +08:00

14 lines
281 B
Java

package com.jsh.erp.service;
import java.lang.annotation.*;
/**
* @author jishenghua 2018-10-7 15:25:39
*/
@Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface ResourceInfo {
String value();
}