1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| 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> getByModelidFromCache(String modelId);
|
| List<MmModelParamEntity> getByModelid(String modelid);
|
| void clearCache();
| }
|
|