package com.qianwen.smartman.modules.fms.service; import com.baomidou.mybatisplus.core.metadata.IPage; import java.util.List; import com.qianwen.core.mp.support.Query; import com.qianwen.smartman.modules.fms.vo.FmsProduceOrderVO; import com.qianwen.smartman.modules.fms.vo.FmsProducePartVO; import com.qianwen.smartman.modules.fms.vo.FmsProduceProcessVO; import com.qianwen.smartman.modules.fms.vo.FmsProduceQueryVO; public interface IFmsProductionStatisticsService { IPage orderPage(Query query, FmsProduceQueryVO fmsProduceQueryVO); FmsProduceProcessVO processList(Long orderId); List partList(Long orderId); }