1821349743@qq.com
2023-02-20 059154a3b7d812b3bb4b89ecfa4d94f9b905f7e0
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.product.server.report.service.idel;
 
import com.alibaba.fastjson.JSONObject;
import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
public interface IChartPropertyConfigService {
 
    /**
     *     添加图形报表 统一提交
     * @param fse
     * @return
     */
    String addChartsMasterTable(FieldSetEntity fse)throws BaseException;
 
    /**
     *     修改图形报表 统一提交
     * @param fse
     * @return
     */
    Boolean upChartsMasterTable(FieldSetEntity fse)throws BaseException;
 
    /**
     *     删除图形报表
     * @param fse
     * @return
     */
    Boolean delChartsMasterTable(FieldSetEntity fse)throws BaseException;
 
    /**
     * 获取图表详情
     * @param uuid
     * @return
     * @throws BaseException
     */
    JSONObject getChartsMasterTable(String uuid)throws BaseException;
 
    /**
     * 获取图表列表
     * @param
     * @return
     * @throws BaseException
     */
    DataTableEntity getChartsMasterList(FieldSetEntity fse)throws BaseException;
 
    /**
     * 拖下类型表时带出类型及子表数据
     * @param uuid
     * @return
     * @throws BaseException
     */
    JSONObject getChartsTypeData(String uuid)throws BaseException;
}