对接支付开发

This commit is contained in:
hejinbo
2023-09-09 16:50:34 +08:00
parent 362d433bb3
commit 4d2d8b0976
47 changed files with 2503 additions and 2 deletions
@@ -0,0 +1,20 @@
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();
}