| | |
| | | |
| | | 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; |
| | |
| | | @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); |
| | | } |
| | | } |
| | | |