| | |
| | | import com.baomidou.dynamic.datasource.annotation.DS; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.mes.order.entity.Orderdetail; |
| | | import com.mes.order.entity.Orders; |
| | | import com.mes.order.entity.*; |
| | | import com.mes.order.entity.dto.OrderDTO; |
| | | import com.mes.order.mapper.OrderdetailMapper; |
| | | import com.mes.order.mapper.OrdersMapper; |
| | |
| | | public List<OrderDTO> selectOrderPercent(){ |
| | | return baseMapper.selectOrderPercent(); |
| | | } |
| | | |
| | | @Override |
| | | public HollowOrderDTO queryOrderByFlowCardId(String flowCardId){ |
| | | return baseMapper.queryOrderByFlowCardId(flowCardId); |
| | | } |
| | | |
| | | @Override |
| | | public List<HollowGlassDetailsDTO> queryFlowCardIdMaxLayerGlassInfo(String flowCardId, int totalLayer){ |
| | | return baseMapper.queryFlowCardIdMaxLayerGlassInfo(flowCardId, totalLayer); |
| | | } |
| | | |
| | | @Override |
| | | public List<HollowGlassDetailsDTO> queryFlowCardIdLayerGlassInfo(String flowCardId, int totalLayer, int layer){ |
| | | return baseMapper.queryFlowCardIdLayerGlassInfo(flowCardId, totalLayer, layer); |
| | | } |
| | | |
| | | @Override |
| | | public OrderDetailsDTO queryProductNameByFlowCardId(String flowCardId){ |
| | | return baseMapper.queryProductNameByFlowCardId(flowCardId); |
| | | } |
| | | } |