package com.ltkj.web.controller.app;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* 小程序预约下单Controller
|
*
|
* @author ltkj_赵佳豪&李格
|
* @date 2023-05-18
|
* 绑定当前登录的用户
|
* 不同于@ModelAttribute
|
*/
|
@Target(ElementType.PARAMETER)
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface CurrentMember {
|
|
/**
|
* 当前用户在request中的名字
|
*/
|
String value() default "user";
|
|
}
|