cuikaidong
2025-06-12 066063ed92fdd40da4dfe21770557f3adba3e1af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 {
 
}