Lius
2025-08-27 f2d2af96f482e5d2ee41b71b133d6dac5bdafe53
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.jeecg.modules.mdc.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.mdc.entity.EquipmentXYZ;
import org.jeecg.modules.mdc.mapper.EquipmentXYZMapper;
import org.jeecg.modules.mdc.service.IEquipmentXYZService;
import org.springframework.stereotype.Service;
 
/**
 * @author: LiuS
 * @create: 2023-04-07 14:40
 */
@Service
public class EquipmentXYZServiceImpl extends ServiceImpl<EquipmentXYZMapper, EquipmentXYZ> implements IEquipmentXYZService {
}