潘志宝
2024-09-20 de0c05b9df5dc8f20fcfca7dc0d1bd35f0ac5a4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.iailab.module.model.mcs.pre.service;
 
import com.iailab.framework.common.service.BaseService;
import com.iailab.module.model.mcs.pre.entity.MmModelParamEntity;
 
import java.util.List;
 
/**
 * @author PanZhibao
 * @date 2021年04月27日 9:09
 */
public interface MmModelParamService extends BaseService<MmModelParamEntity> {
 
    void saveList(List<MmModelParamEntity> list);
 
    List<MmModelParamEntity> getByModelid(String modelid);
}