ZengTao
2025-10-11 b03389088870daf55208b44f627a538df077e91b
hangzhoumesParent/common/servicebase/src/main/java/com/mes/order/mapper/OrdersMapper.java
@@ -1,5 +1,8 @@
package com.mes.order.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mes.order.entity.HollowGlassDetailsDTO;
import com.mes.order.entity.HollowOrderDTO;
import com.mes.order.entity.OrderDetailsDTO;
import com.mes.order.entity.Orders;
import com.mes.order.entity.dto.OrderDTO;
@@ -16,4 +19,12 @@
public interface OrdersMapper extends BaseMapper<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);
}