You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
551 B
16 lines
551 B
package com.iflytop.gd.app.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.iflytop.gd.app.mapper.DeviceParamConfigMapper;
|
|
import com.iflytop.gd.app.model.entity.DeviceParamConfig;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* 设备参数配置服务
|
|
*/
|
|
@Service
|
|
@RequiredArgsConstructor
|
|
public class DeviceParamConfigService extends ServiceImpl<DeviceParamConfigMapper, DeviceParamConfig> {
|
|
private final DeviceParamConfigMapper deviceParamConfigMapper;
|
|
}
|