Lius
2025-08-25 2b9ff0c274a847af41b2f5a04de1b23ed6fbb9bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.jeecg.modules.mdc.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.mdc.entity.EquipmentBaseInfo;
import org.jeecg.modules.mdc.mapper.EquipmentBaseInfoMapper;
import org.jeecg.modules.mdc.service.IEquipmentBaseInfoService;
import org.springframework.stereotype.Service;
 
/**
 * @author: LiuS
 * @create: 2023-04-07 14:49
 */
@Service
public class EquipmentBaseInfoServiceImpl extends ServiceImpl<EquipmentBaseInfoMapper, EquipmentBaseInfo> implements IEquipmentBaseInfoService {
 
}