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 "";
|
}
|