wanghc
2023-07-04 a042e0e63f86a0880d20e57c14ec4a60b65801fb
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
package com.jttech.pfcs.services;
 
import com.jttech.pfcs.vo.req.bill.FtpServerParam;
import com.jttech.pfcs.vo.resp.ResponseVo;
import com.jttech.pfcs.vo.req.bill.BillApiReqVo;
import org.springframework.web.multipart.MultipartFile;
 
/**
 * @author wanghc
 * @version 1.0.0
 * @date 2023-03-08
 */
public interface IBillService {
 
    /**
     * post请求
     * @param reqVo
     * @return
     */
    ResponseVo post(BillApiReqVo reqVo);
 
    /**
     * 文件上传
     * @param files
     * @param pFtpServerParam
     * @return
     */
    ResponseVo fileUpload(MultipartFile[] files, FtpServerParam pFtpServerParam);
}