zhaowenxuan
4 天以前 622efe2800239e257b675fe2eb2e157aa48e8527
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 {
}