houzhongjian
2024-12-05 a709abfd8ffec1524cefff30c3581f4425695433
提交 | 用户 | 时间
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.StScheduleModelParamEntity;
5 import com.iailab.module.model.mcs.sche.vo.StScheduleModelParamSaveReqVO;
6
7 import java.util.List;
8
9 /**
10  * @author PanZhibao
11  * @Description
12  * @createTime 2024年09月06日
13  */
14 public interface StScheduleModelParamService extends BaseService<StScheduleModelParamEntity> {
15
16     List<StScheduleModelParamEntity> getByModelId(String modelId);
17
18     void deleteByModelId(String modelId);
19
20     void saveList(String modelId, List<StScheduleModelParamSaveReqVO> saveList);
45520a 21
D 22     List<StScheduleModelParamEntity> getByModelidFromCache(String modelId);
bbc1ee 23 }