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
package com.iailab.module.prod.service;
 
 
import com.iailab.common.dto.echarts.BarLineDTO;
import com.iailab.framework.common.page.PageData;
import com.iailab.module.prod.dto.PrdCurrentPerformanceDTO;
import org.springframework.stereotype.Service;
 
import java.math.BigDecimal;
import java.util.Map;
 
@Service
public interface PrdCurrentPerformanceService {
 
    BarLineDTO barLine(String length);
 
    BigDecimal currentValue();
 
    PageData<PrdCurrentPerformanceDTO> page(Map<String, Object> params);
 
    PrdCurrentPerformanceDTO get(String id);
 
    void save(PrdCurrentPerformanceDTO dto);
 
    void update(PrdCurrentPerformanceDTO dto);
 
    void delete(String[] ids);
 
    void syncData();
}