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