无关风月
2025-01-21 8f2abbbda6c87c59d0c2c5da9979e78ea38e74db
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
package com.dsh.course.feignClient.account;
 
import com.dsh.course.feignClient.account.model.CoachType;
import com.dsh.course.feignClient.account.model.RechargeRecords;
import com.dsh.guns.modular.system.model.RechargeRecordsQuery;
import com.dsh.guns.modular.system.model.RechargeRecordsVO;
import org.springframework.cloud.openfeign.FeignClient;
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.ResponseBody;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @Date 2023/8/1 17:58
 */
@FeignClient("mb-cloud-account")
public interface FinanceClient {
 
    /**
     * 充值记录列表数据
     */
    @RequestMapping("/finance/rechargeList")
     List<RechargeRecordsVO> rechargeList(@RequestBody RechargeRecordsQuery query);
    /**
     * 数据统计-充值记录列表数据
     */
    @RequestMapping("/finance/rechargeList1")
    List<RechargeRecords> rechargeList1(@RequestBody RechargeRecordsQuery query);
}