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;
|
|
|
/**
|
* 财务流水-顶部
|
*/
|
|
|
/**
|
* 财务流水-分页
|
*/
|
|
|
|
/**
|
* 提现申请-分页
|
*/
|
|
/**
|
* 同意
|
*/
|
|
/**
|
* 拒绝
|
*/
|
}
|