wangfei
2024-12-31 4ed47bfce9b3edd78ea447ecffc0babebdbea10b
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);
    }
}