You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
484 B
Java
28 lines
484 B
Java
package com.engine.organization.annotation;
|
|
|
|
import com.engine.organization.enums.OperateTypeEnum;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* @Author dxfeng
|
|
* @Description:
|
|
* @Date 2022/5/9
|
|
* @Version V1.0
|
|
**/
|
|
@Target({ElementType.PARAMETER, ElementType.METHOD})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
public @interface Log {
|
|
|
|
/**
|
|
* 操作类型
|
|
*/
|
|
OperateTypeEnum operateType();
|
|
|
|
/**
|
|
* 操作说明
|
|
*/
|
|
String operateDesc() default "";
|
|
}
|