廖井涛
2024-07-28 dffdcaa14f32c51a63b4ab2cc7a38eebf17f8f44
north-glass-erp/src/main/java/com/example/erp/mapper/sd/OrderDetailMapper.java
@@ -2,6 +2,7 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.erp.dto.sd.OrderDTO;
import com.example.erp.dto.sd.OrderDetailProductDTO;
import com.example.erp.entity.sd.OrderDetail;
import org.apache.ibatis.annotations.Mapper;
@@ -29,5 +30,17 @@
    List<OrderDTO> exportOrderProductSummary(List<LocalDate> dates);
    List<OrderDetailProductDTO> exportOrderReportProduct(List<LocalDate> dates);
    Map<String, String> getOrderProductDetailTag(String orderId);
    List<Map<String,Object>> getOrderProductDistinctById(String orderId);
    List<Map<String,Object>> getOrderProductDistinctByIds(String orderId,List<String> productId);
    List<OrderDetail> getOrderProductByProductId(Object productId, String orderId);
    List<Map<String,Object>> getOrderProductByProductIds(Object productId, String orderId);
}