| | |
| | | package com.iailab.module.model.mcs.pre.service; |
| | | |
| | | import com.iailab.framework.common.service.BaseService; |
| | | import com.iailab.module.model.mcs.pre.entity.MmModelParamEntity; |
| | | |
| | | import java.util.List; |
| | |
| | | * @author PanZhibao |
| | | * @date 2021年04月27日 9:09 |
| | | */ |
| | | public interface MmModelParamService extends BaseService<MmModelParamEntity> { |
| | | public interface MmModelParamService{ |
| | | |
| | | void saveList(List<MmModelParamEntity> list); |
| | | |
| | | List<MmModelParamEntity> getByModelidFromCache(String modelId); |
| | | |
| | | List<MmModelParamEntity> getByModelid(String modelid); |
| | | |
| | | void clearCache(); |
| | | } |