소스 검색

更新!

TRX 1 년 전
부모
커밋
72c0949280
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      FullCardServer/src/main/java/com/zhongshu/card/server/core/service/payment/OrderService.java

+ 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();
+    }
+
 }