21 lines
371 B
Java
21 lines
371 B
Java
package com.ruoyi.annotation;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* create by: wgl
|
|
* desc: 自定义支付平台注解,支付平台 微信:wx 支付宝:zfb
|
|
*/
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target({ElementType.TYPE})
|
|
public @interface TradePlatform {
|
|
|
|
/**
|
|
* 平台的id
|
|
* Platform.WX
|
|
* @return
|
|
*/
|
|
String value();
|
|
}
|