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