提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.pre.service; |
潘 |
2 |
|
|
3 |
import com.iailab.module.model.mcs.pre.entity.MmPredictModelEntity; |
|
4 |
|
|
5 |
import java.math.BigDecimal; |
|
6 |
import java.util.List; |
|
7 |
import java.util.Map; |
|
8 |
|
|
9 |
/** |
|
10 |
* @author PanZhibao |
|
11 |
* @date 2021年04月27日 11:26 |
|
12 |
*/ |
5c6007
|
13 |
public interface MmPredictModelService{ |
7fd198
|
14 |
|
潘 |
15 |
void savePredictModel(MmPredictModelEntity predictModel); |
|
16 |
|
|
17 |
void update(MmPredictModelEntity predictModel); |
|
18 |
|
91343d
|
19 |
MmPredictModelEntity getInfoFromCatch(String id); |
潘 |
20 |
|
7fd198
|
21 |
MmPredictModelEntity getInfo(String id); |
潘 |
22 |
|
|
23 |
BigDecimal getSampleLength(String id); |
|
24 |
|
|
25 |
List<MmPredictModelEntity> getNoSettingmapPredictModel(Map<String, Object> params); |
|
26 |
|
373ab1
|
27 |
MmPredictModelEntity getActiveModelByItemId(String itemId); |
91343d
|
28 |
|
潘 |
29 |
void clearCache(); |
7fd198
|
30 |
} |