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
| package com.by4cloud.platformx.business.invoice.service;
|
| /**
| * @author kdq
| * @version 1.0.0
| * @ClassName FileUploadService.java
| * @Description TODO
| * @createTime 2024年09月03日 10:04:00
| */
|
|
|
| import com.by4cloud.platformx.business.entity.Contract;
|
| import java.util.List;
|
| /**
| * 电子影像接口
| *
| * @author kdq
| */
| public interface FileUploadService {
|
| //上传文件到bip
| String uploadToBip(Long railwayEntrustId, String businessId, String filename);
|
| String uploadUrlToBip(Long railwayEntrustId, String businessId, String fileUrl);
|
| String deleteFileBip(Integer railwayEntrustId, String businessId, String fid);
|
| }
|
|