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);
|
}
|