|
@@ -12,6 +12,7 @@ import cn.hutool.json.XML;
|
|
|
import com.malk.server.common.McException;
|
|
|
import com.malk.server.common.McR;
|
|
|
import com.malk.utils.UtilMap;
|
|
|
+import com.malk.utils.UtilServlet;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
@@ -96,6 +97,25 @@ public class DFXHController {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * 付款账号同步
|
|
|
+ */
|
|
|
+ @PostMapping("sync")
|
|
|
+ McR sync(HttpServletRequest request) {
|
|
|
+
|
|
|
+ Map data = UtilServlet.getParamMap(request);
|
|
|
+ log.info("付款账号同步, {}", data);
|
|
|
+
|
|
|
+ // 查询付款账户
|
|
|
+
|
|
|
+
|
|
|
+ // 更新付款信息
|
|
|
+
|
|
|
+
|
|
|
+ return McR.success();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@PostMapping(value = "test")
|
|
|
McR test(String name, HttpServletRequest request) {
|
|
|
|