houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.iailab.module.mcs.service;
 
import com.iailab.framework.common.service.CrudService;
import com.iailab.module.mcs.dto.StModelParamDTO;
import com.iailab.module.mcs.entity.StModelParamEntity;
 
import java.util.List;
import java.util.Map;
 
/**
 * 
 *
 * @author lirm 1343021927@qq.com
 * @since 1.0.0 2023-05-10
 */
public interface StModelParamService extends CrudService<StModelParamEntity, StModelParamDTO> {
 
    List<StModelParamDTO> getAll(Map<String, Object> params);
 
    void deleteByModelId(String modelId);
 
    List<StModelParamDTO> getByModelId(String modelId);
 
}