zhangherong
2025-06-30 804901bfc31353a5d398a68dd8ef1635b76629fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package org.jeecg.modules.eam.aspect.annotation;
 
import org.jeecg.modules.eam.constant.EquipmentOperationTagEnum;
 
import java.lang.annotation.*;
 
/**
 * 设备履历注解
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface EquipmentHistoryLog {
 
    /**
     * 操作标签 枚举
     * @return
     */
    EquipmentOperationTagEnum operationTag() default EquipmentOperationTagEnum.OTHER;
 
    /**
     * 涉及的业务主表
     * @return
     */
    String businessTable() default "";
}