dengzedong
2025-02-13 4af6b1e2c41365936df308eea6fa50e269eca3b6
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);
}