| | |
| | | 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; |
| | |
| | | * @author PanZhibao |
| | | * @date 2021年04月27日 11:26 |
| | | */ |
| | | public interface MmPredictModelService extends BaseService<MmPredictModelEntity> { |
| | | public interface MmPredictModelService{ |
| | | |
| | | void savePredictModel(MmPredictModelEntity predictModel); |
| | | |
| | | void update(MmPredictModelEntity predictModel); |
| | | |
| | | MmPredictModelEntity getInfoFromCatch(String id); |
| | | |
| | | MmPredictModelEntity getInfo(String id); |
| | | |
| | |
| | | |
| | | List<MmPredictModelEntity> getNoSettingmapPredictModel(Map<String, Object> params); |
| | | |
| | | List<MmPredictModelEntity> getActiveModelByItemId(String itemId); |
| | | MmPredictModelEntity getActiveModelByItemId(String itemId); |
| | | |
| | | void clearCache(); |
| | | } |