zhoushihao
2025-01-17 5d1bb80afb4c4db35eec39577c3e47b2d5e91dbb
hangzhoumesParent/moduleService/howllowGlassModule/src/main/java/com/mes/hollow/service/impl/HollowFormulaDetailsServiceImpl.java
@@ -2,6 +2,7 @@
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;
@@ -15,5 +16,9 @@
@Service
public class HollowFormulaDetailsServiceImpl extends ServiceImpl<HollowFormulaDetailsMapper, HollowFormulaDetails> implements HollowFormulaDetailsService {
    @Override
    public HollowGlassFormulaVO queryFormulaDetailsByGlassId(String glassId, String flowCardId, Integer cell) {
        return baseMapper.queryFormulaDetailsByGlassId(glassId, flowCardId, cell);
    }
}