package org.jeecg.modules.iot.mapper;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.jeecg.modules.iot.entity.ControlSystem;
|
import org.springframework.stereotype.Component;
|
|
/**
|
* @Description: 控制系统信息
|
* @Author: cuikaidong
|
* @Date: 2025-6-3
|
* @Version: V1.0
|
*/
|
@Component("iotControlSystemMapper")
|
public interface ControlSystemMapper extends BaseMapper<ControlSystem> {
|
|
}
|