package org.jeecg.modules.mdc.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.jeecg.modules.mdc.entity.MdcEquipmentDaySummary; import org.jeecg.modules.mdc.mapper.MdcEquipmentDaySummaryMapper; import org.jeecg.modules.mdc.service.IMdcEquipmentDaySummaryService; import org.springframework.stereotype.Service; /** * @Author: Lius * @CreateTime: 2025-02-26 * @Description: 设备日汇总impl */ @Service public class MdcEquipmentDaySummaryServiceImpl extends ServiceImpl implements IMdcEquipmentDaySummaryService { @Override public MdcEquipmentDaySummary statisticsQty(String productionId) { return this.baseMapper.statisticsQty(productionId); } }