许鹏程
2023-06-30 3bbfaa3d7d416afbd154576453c8ee9e7e2f8899
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.product.server.report.service.idel;
 
import com.product.core.entity.FieldSetEntity;
 
public interface IReportDatasourceService {
    /**
     * 数据源-保存
     * @param fse
     * @return
     */
    String saveDatasource(FieldSetEntity fse);
    
    /**
     *     报表数据源删除
     * @param uuid
     * @return
     */
    boolean deleteDatasource(String uuid);
}