weather-data/system-api/src/main/java/com/weather/annotation/LoginUser.java
2026-06-23 18:46:45 +08:00

20 lines
345 B
Java

package com.weather.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 登录用户信息
*
* @author 123
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface LoginUser {
}