package com.iailab.module.model.mcs.sche.service;
|
|
import com.iailab.framework.common.service.BaseService;
|
import com.iailab.module.model.mcs.sche.entity.StScheduleModelSettingEntity;
|
import com.iailab.module.model.mcs.sche.vo.StScheduleModelSettingSaveReqVO;
|
|
import java.util.List;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年09月06日
|
*/
|
public interface StScheduleModelSettingService extends BaseService<StScheduleModelSettingEntity> {
|
|
List<StScheduleModelSettingEntity> getByModelId(String modelId);
|
|
void deleteByModelId(String modelId);
|
|
void saveList(String modelId, List<StScheduleModelSettingSaveReqVO> saveList);
|
|
void updatePyFile(String pyModule, String fileName);
|
}
|