提交 | 用户 | 时间
|
bbc1ee
|
1 |
package com.iailab.module.model.mcs.sche.service; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.common.service.BaseService; |
|
4 |
import com.iailab.module.model.mcs.sche.entity.StScheduleModelSettingEntity; |
|
5 |
import com.iailab.module.model.mcs.sche.vo.StScheduleModelSettingSaveReqVO; |
|
6 |
|
|
7 |
import java.util.List; |
|
8 |
|
|
9 |
/** |
|
10 |
* @author PanZhibao |
|
11 |
* @Description |
|
12 |
* @createTime 2024年09月06日 |
|
13 |
*/ |
|
14 |
public interface StScheduleModelSettingService extends BaseService<StScheduleModelSettingEntity> { |
|
15 |
|
|
16 |
List<StScheduleModelSettingEntity> getByModelId(String modelId); |
|
17 |
|
|
18 |
void deleteByModelId(String modelId); |
|
19 |
|
|
20 |
void saveList(String modelId, List<StScheduleModelSettingSaveReqVO> saveList); |
826d35
|
21 |
|
D |
22 |
void updatePyFile(String pyModule, String fileName); |
bbc1ee
|
23 |
} |