hyingbo
2025-07-01 161402178c31b19aaa2de204d94c085e1b6da9c9
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.EquipmentStatisticalInfo;
import org.jeecg.modules.mdc.mapper.EquipmentStatisticalInfoMapper;
import org.jeecg.modules.mdc.service.IEquipmentStatisticalInfoService;
import org.springframework.stereotype.Service;
 
/**
 * @author Lius
 * @date 2023/10/24 14:04
 */
@Service
public class EquipmentStatisticalInfoServiceImpl extends ServiceImpl<EquipmentStatisticalInfoMapper, EquipmentStatisticalInfo> implements IEquipmentStatisticalInfoService {
}