aop切点接口

package com.geekmore.modules.device.aop;

import java.lang.annotation.*;

/**
* 设备日志注解
* @author View_Zhang
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DeviceLog {
/**
* 日志类型id
*/
String typeId() default "";
/**
* 日志类型id
*/
String devid() default "";
/**
* 产品名称
*/
String deviceName() default "";
}
posted @ 2022-12-02 10:55  风景啊  阅读(34)  评论(0)    收藏  举报