潘志宝
2024-12-03 51c1c2c9fa28fb1765dd6e81c70b78566792aebe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
}