guomengjiao vor 6 Tagen
Ursprung
Commit
21632fae0b

+ 30 - 0
renren-admin/src/main/java/io/renren/modules/qyh/api/ApiWithdrawConfigController.java

@@ -0,0 +1,30 @@
+package io.renren.modules.qyh.api;
+
+import io.renren.common.utils.R;
+import io.renren.modules.qyh.service.WithdrawConfigService;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * 青雲慧-提现配置
+ *
+ */
+@RestController
+@RequestMapping("api/withdrawConfig")
+@Api(tags = "青雲慧-提现配置")
+public class ApiWithdrawConfigController {
+    @Autowired
+    private WithdrawConfigService withdrawConfigService;
+
+    @GetMapping("/info")
+    @ApiOperation("信息")
+    // @RequiresPermissions("qyh:withdrawConfig:info")
+    public R info() {
+        return R.ok().put("data", withdrawConfigService.info());
+    }
+
+}