liriming
2024-09-09 d395d2fed08797dbc8628a2f82283493098d23fb
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
package com.iailab.module.model.mcs.pre.service;
 
import com.iailab.framework.common.service.BaseService;
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 extends BaseService<MmPredictModelEntity> {
 
    void savePredictModel(MmPredictModelEntity predictModel);
 
    void update(MmPredictModelEntity predictModel);
 
    MmPredictModelEntity getInfo(String id);
 
    BigDecimal getSampleLength(String id);
 
    List<MmPredictModelEntity> getNoSettingmapPredictModel(Map<String, Object> params);
 
    List<MmPredictModelEntity> getActiveModelByItemId(String itemId);
}