| | |
| | | package com.iailab.module.model.mcs.pre.dao; |
| | | |
| | | import com.iailab.framework.mybatis.core.mapper.BaseMapperX; |
| | | import com.iailab.framework.tenant.core.db.dynamic.TenantDS; |
| | | import com.iailab.module.model.mcs.pre.entity.MmPredictModelEntity; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | |
| | | * @author PanZhibao |
| | | * @date 2021年04月27日 11:29 |
| | | */ |
| | | @TenantDS |
| | | @Mapper |
| | | public interface MmPredictModelDao extends BaseMapperX<MmPredictModelEntity> { |
| | | |
| | |
| | | |
| | | List<MmPredictModelEntity> getActiveModelByItemId(String itemId); |
| | | |
| | | List<MmPredictModelEntity> getSampleLength(String modelId); |
| | | MmPredictModelEntity getSampleLength(String modelId); |
| | | } |