puzhibing
2023-06-13 7860e5cb6db60aeb82c640651998f8294635df5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.dsh.course.feignClient.account;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.dsh.course.feignClient.account.model.QueryWithdrawalReq;
import com.dsh.guns.modular.system.model.TPubWithdrawal;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
 
import java.util.Map;
 
@FeignClient(value = "mb-cloud-account", path = "/tPubWithdrawal")
public interface TPubWithdrawalClient {
    @PostMapping(value = "/queryTPubWithdrawalId")
    TPubWithdrawal queryTPubWithdrawalId(Integer tPubWithdrawalId);
 
    @PostMapping(value = "/update")
    Object update(TPubWithdrawal tPubWithdrawal);
 
    @PostMapping(value = "/add")
    Object add(TPubWithdrawal tPubWithdrawal);
 
    @PostMapping(value = "/queryTPubWithdrawalList")
    Page<Map<String, Object>> queryTPubWithdrawalList(QueryWithdrawalReq req);
}