zhaowenxuan
13 小时以前 296b67944a807fb918d78b50a2d89768ec4aca38
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ltkj.web.controller.api.anno;
 
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
/**
 * @Company: 西安路泰科技有限公司
 * @Author: zhaowenxuan
 * @Date: 2025/7/17 17:31
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Encrypt {
}