1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.iailab.module.model.mcs.pre.service;
|
| import com.iailab.module.model.mcs.pre.entity.MmModelArithSettingsEntity;
|
| import java.util.List;
|
| /**
| * @author PanZhibao
| * @date 2021年04月27日 9:06
| */
| public interface MmModelArithSettingsService{
|
| void saveList(List<MmModelArithSettingsEntity> list);
|
| List<MmModelArithSettingsEntity> getByModelId(String modelId);
|
| void updatePyFile(String pyModule, String fileName);
| }
|
|