提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.pre.dao; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.mybatis.core.mapper.BaseMapperX; |
|
4 |
import com.iailab.module.model.mcs.pre.entity.MmPredictModelEntity; |
|
5 |
import org.apache.ibatis.annotations.Mapper; |
|
6 |
|
|
7 |
import java.util.List; |
|
8 |
import java.util.Map; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @date 2021年04月27日 11:29 |
|
13 |
*/ |
|
14 |
@Mapper |
|
15 |
public interface MmPredictModelDao extends BaseMapperX<MmPredictModelEntity> { |
|
16 |
|
|
17 |
List<MmPredictModelEntity> getNoSettingmapPredictModel(Map<String, Object> params); |
|
18 |
|
|
19 |
List<MmPredictModelEntity> getActiveModelByItemId(String itemId); |
|
20 |
|
|
21 |
List<MmPredictModelEntity> getSampleLength(String modelId); |
|
22 |
} |