huliguo
2025-06-04 7e9508a252df668c3f7472be02595c79b21be11a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.ruoyi.web.controller.system;
 
import com.ruoyi.system.mapper.WithdrawMapper;
import com.ruoyi.system.service.WithdrawService;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
import javax.annotation.Resource;
 
@Slf4j
@RestController
@RequestMapping("/system/finance")
@Api( tags = "后台-财务管理")
public class FinanceController {
 
    @Resource
    private WithdrawService withdrawService;
 
 
    /**
     * 财务流水-顶部
     */
 
 
    /**
     * 财务流水-分页
     */
 
 
 
    /**
     * 提现申请-分页
     */
 
    /**
     * 同意
     */
 
    /**
     * 拒绝
     */
}