package com.mes.hollow.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.mes.hollow.entity.HollowFormulaDetails; import com.mes.hollow.entity.vo.HollowGlassFormulaVO; import com.mes.hollow.mapper.HollowFormulaDetailsMapper; import com.mes.hollow.service.HollowFormulaDetailsService; import org.springframework.stereotype.Service; /** * (HollowFormulaDetails)表服务实现类 * * @author makejava * @since 2024-12-27 13:35:03 */ @Service public class HollowFormulaDetailsServiceImpl extends ServiceImpl implements HollowFormulaDetailsService { @Override public HollowGlassFormulaVO queryFormulaDetailsByGlassId(String glassId, String flowCardId, Integer cell) { return baseMapper.queryFormulaDetailsByGlassId(glassId, flowCardId, cell); } }