Parcourir la source

feature 无法缴费提示信息修改

xiahan il y a 1 mois
Parent
commit
34c193b812

+ 5 - 0
zhsw-wechat-entity/src/main/java/com/rongwe/wechat/system/vo/WxPrepayOrderVo.java

@@ -22,4 +22,9 @@ public class WxPrepayOrderVo {
     private String zdId;
     // 户号
     private String userNumber;
+
+    private String appId;
+
+    private String merchantId;
+    private String notifyUrl;
 }

+ 43 - 0
zhsw-wechat-server/src/main/java/com/rongwei/wechat/system/controller/weChat/OwnerController.java

@@ -0,0 +1,43 @@
+package com.rongwei.wechat.system.controller.weChat;
+
+import com.rongwei.rwcommon.base.R;
+import com.rongwei.wechat.system.wechat.impl.OwnerServiceImpl;
+import org.checkerframework.checker.units.qual.A;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.Map;
+
+/**
+ * OwnerController class
+ *
+ * @author XH
+ * @date 2025/07/10
+ */
+@RestController
+@RequestMapping("/owner")
+public class OwnerController {
+
+    private final Logger log = LoggerFactory.getLogger(this.getClass().getName());
+
+    @Autowired
+    private OwnerServiceImpl ownerService;
+
+
+    /**
+     * 刷新业主信
+     *
+     * @param data
+     * @return
+     */
+    @PostMapping("/refresh")
+    private R refreshOwner(@RequestBody Map<String, String> refreshPara) {
+        return ownerService.refreshOwner(refreshPara);
+    }
+
+}