17 lines
308 B
Java
17 lines
308 B
Java
package com.engine.salary.elog.annotation;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target({ElementType.TYPE})
|
|
@Component
|
|
public @interface ElogTable {
|
|
|
|
String module();
|
|
|
|
String function() default "common";
|
|
}
|