houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
package com.iailab.module.prod.service;
 
import com.iailab.common.dto.echarts.BarLineDTO;
import com.iailab.framework.common.page.PageData;
import com.iailab.framework.common.service.BaseService;
import com.iailab.module.prod.dto.IndexEvaluateSystemDTO;
import com.iailab.module.prod.entity.IndexEvaluateSystemEntity;
 
import java.util.List;
import java.util.Map;
 
public interface IndexEvaluateSystemService extends BaseService<IndexEvaluateSystemEntity> {
 
    PageData<IndexEvaluateSystemDTO> page(Map<String, Object> params);
 
    IndexEvaluateSystemDTO get(String id);
 
    void save(IndexEvaluateSystemDTO dto);
 
    void update(IndexEvaluateSystemDTO dto);
 
    void delete(String[] ids);
 
    List<IndexEvaluateSystemEntity> list(String id);
 
    Map<String,String> systemWeightList();
 
    void updataSystemWeight(Map<String, String> params);
 
    BarLineDTO getChart(String pid);
 
    void updataWeight(List<IndexEvaluateSystemEntity> list);
 
    List<Double> getWeight();
}