| | |
| | | package com.mes.order.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.mes.order.entity.Order; |
| | | 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 java.util.List; |
| | |
| | | List<Orderdetail> selectOrderdetail(Orders orders); |
| | | |
| | | List<OrderDTO> selectOrderPercent(); |
| | | |
| | | HollowOrderDTO queryOrderByFlowCardId(String flowCardId); |
| | | |
| | | List<HollowGlassDetailsDTO> queryFlowCardIdMaxLayerGlassInfo(String flowCardId, int totalLayer); |
| | | |
| | | List<HollowGlassDetailsDTO> queryFlowCardIdLayerGlassInfo(String flowCardId, int totalLayer, int layer); |
| | | |
| | | OrderDetailsDTO queryProductNameByFlowCardId(String flowCardId); |
| | | } |