提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.pre.service; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.common.service.BaseService; |
|
4 |
import com.iailab.module.model.mcs.pre.entity.MmModelArithSettingsEntity; |
|
5 |
|
|
6 |
import java.util.List; |
|
7 |
|
|
8 |
/** |
|
9 |
* @author PanZhibao |
|
10 |
* @date 2021年04月27日 9:06 |
|
11 |
*/ |
|
12 |
public interface MmModelArithSettingsService extends BaseService<MmModelArithSettingsEntity> { |
|
13 |
|
|
14 |
void saveList(List<MmModelArithSettingsEntity> list); |
|
15 |
|
|
16 |
List<MmModelArithSettingsEntity> getByModelId(String modelId); |
|
17 |
} |