package org.jeecg.modules.iot.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.jeecg.modules.iot.entity.ControlSystem;
|
import org.jeecg.modules.iot.mapper.ControlSystemMapper;
|
import org.jeecg.modules.iot.service.IControlSystemService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @Description: 控制系统信息
|
* @Author: cuikaidong
|
* @Date: 2025-6-3
|
* @Version: V1.0
|
*/
|
@Service
|
public class ControlSystemServiceImpl extends ServiceImpl<ControlSystemMapper, ControlSystem> implements IControlSystemService {
|
|
}
|