1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package org.jeecg.modules.iot.mdc.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import org.jeecg.modules.iot.mdc.entity.MdcDriveTypeParamConfig;
|
| import java.util.List;
|
| /**
| * @Description: 驱动参数配置
| * @Author: jeecg-boot
| * @Date: 2023-04-20
| * @Version: V1.0
| */
| public interface IMdcDriveTypeParamConfigService extends IService<MdcDriveTypeParamConfig> {
|
| }
|
|