潘志宝
2024-11-18 91343d9a8d97b823f1b662f980790bb901bca46b
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);
 
    List<MmPredictModelEntity> getActiveModelByItemId(String itemId);
 
    void clearCache();
}