huminmin
2026-04-08 f7b8a02843673c19e21b275d1c54e2a778bfedd4
src/main/java/com/ruoyi/production/mapper/ProductOrderMapper.java
@@ -17,12 +17,14 @@
public interface ProductOrderMapper extends BaseMapper<ProductOrder> {
    IPage<ProductOrderDto> pageProductOrder(Page page, @Param("c") ProductOrderDto productOrder);
    /**
     * 根据订单ID查询工单报工
     */
     ProductOrderDto productMainByOrderId(@Param("c") ProductOrder productOrder);
    List<ProcessRoute> listProcessRoute(@Param("productModelId") Long productModelId);
    List<ProductStructureDto> listProcessBom(@Param("orderId") Long orderId);
    Integer countCreated(@Param("startDate") String startDate, @Param("endDate") String endDate);
    Integer countCompleted(@Param("startDate") String startDate, @Param("endDate") String endDate);
    Integer countPending(@Param("startDate") String startDate, @Param("endDate") String endDate);
}