Lius
2025-08-27 1bdd0915e9b1142a97bb65450264df795770875e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.modules.mdc.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.common.constant.CommonConstant;
import org.jeecg.modules.mdc.entity.ControlSystem;
import org.jeecg.modules.mdc.mapper.ControlSystemMapper;
import org.jeecg.modules.mdc.service.IControlSystemService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * @author: LiuS
 * @create: 2023-04-07 11:16
 */
@Service
public class ControlSystemServiceImpl extends ServiceImpl<ControlSystemMapper, ControlSystem> implements IControlSystemService {
 
}