wanghc
2023-07-04 a042e0e63f86a0880d20e57c14ec4a60b65801fb
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/IBillService.java
@@ -1,7 +1,9 @@
package com.jttech.pfcs.services;
import com.jttech.pfcs.vo.ResponseVo;
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
@@ -16,4 +18,12 @@
     * @return
     */
    ResponseVo post(BillApiReqVo reqVo);
    /**
     * 文件上传
     * @param files
     * @param pFtpServerParam
     * @return
     */
    ResponseVo fileUpload(MultipartFile[] files, FtpServerParam pFtpServerParam);
}