提交 a017ce1f authored 作者: 000516's avatar 000516

添加自定义注解,销售人员权限检查

package com.sfa.common.security.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author : liqiulin
* @date : 2025-12-10 11
* @describe : AP人员权限检查注解
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface SalesPermissionCheck {
enum CheckType {
USER,
DEPT
}
CheckType value() default CheckType.USER;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论