forked from kidgrow-microservices-platform

luliqiang
2020-12-31 6fb14149d62199cfcc0448c82eb2f51f9c5181de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.kidgrow.common.annotation;
 
import java.lang.annotation.*;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 *
 * @Description: 请求的方法参数上添加该注解,则注入当前登录账号的应用id,例:public void test(@LoginClient String clientId) //注入webApp<br>
 * @Project: <br>
 * @CreateDate: Created in 2020/2/3 16:05 <br>
 * @Author: <a href="4345453@kidgrow.com">liuke</a>
 */
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface LoginClient {
}