Bladeren bron

更新!

TRX 1 jaar geleden
bovenliggende
commit
72c0949280

+ 11 - 0
FullCardServer/src/main/java/com/zhongshu/card/server/core/service/payment/OrderService.java

@@ -1,5 +1,6 @@
 package com.zhongshu.card.server.core.service.payment;
 
+import com.github.microservice.net.ResultContent;
 import com.zhongshu.card.server.core.service.base.SuperService;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.stereotype.Service;
@@ -14,4 +15,14 @@ import org.springframework.stereotype.Service;
 @Service
 public class OrderService extends SuperService {
 
+    /**
+     * 小程序扫 设备码 下单
+     *
+     * @return
+     */
+    public ResultContent cqrCodeBCreateOrder() {
+
+        return ResultContent.buildSuccess();
+    }
+
 }