houzhongjian
2024-12-05 a709abfd8ffec1524cefff30c3581f4425695433
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.iailab.module.model.mcs.sche.service;
 
import com.iailab.framework.common.service.BaseService;
import com.iailab.module.model.mcs.sche.entity.StScheduleModelParamEntity;
import com.iailab.module.model.mcs.sche.vo.StScheduleModelParamSaveReqVO;
 
import java.util.List;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年09月06日
 */
public interface StScheduleModelParamService extends BaseService<StScheduleModelParamEntity> {
 
    List<StScheduleModelParamEntity> getByModelId(String modelId);
 
    void deleteByModelId(String modelId);
 
    void saveList(String modelId, List<StScheduleModelParamSaveReqVO> saveList);
 
    List<StScheduleModelParamEntity> getByModelidFromCache(String modelId);
}