工业互联网平台2.0版本后端代码
潘志宝
2024-11-22 373ab16760c6a6eeab92d0b92b8e67e7a1f7c398
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.model.mcs.pre.service;
 
import com.iailab.module.model.mcs.pre.entity.MmPredictModelEntity;
 
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @date 2021年04月27日 11:26
 */
public interface MmPredictModelService{
 
    void savePredictModel(MmPredictModelEntity predictModel);
 
    void update(MmPredictModelEntity predictModel);
 
    MmPredictModelEntity getInfoFromCatch(String id);
 
    MmPredictModelEntity getInfo(String id);
 
    BigDecimal getSampleLength(String id);
 
    List<MmPredictModelEntity> getNoSettingmapPredictModel(Map<String, Object> params);
 
    MmPredictModelEntity getActiveModelByItemId(String itemId);
 
    void clearCache();
}