2026-06-26 20b96473f2520590a0dca6b775b81e3ea06a77a0
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
27
package cn.iocoder.yudao.module.trade.framework.aftersale.core.annotations;
 
import cn.iocoder.yudao.module.trade.enums.aftersale.AfterSaleOperateTypeEnum;
import cn.iocoder.yudao.module.trade.framework.aftersale.core.aop.AfterSaleLogAspect;
 
import java.lang.annotation.*;
 
/**
 * 售后日志的注解
 *
 * 写在方法上时,会自动记录售后日志
 *
 * @author 陈賝
 * @since 2023/6/8 17:04
 * @see AfterSaleLogAspect
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface AfterSaleLog {
 
    /**
     * 操作类型
     */
    AfterSaleOperateTypeEnum operateType();
 
}