| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.productionPlan.dto.ProductionPlanDto; |
| | | import com.ruoyi.productionPlan.dto.ProductionPlanSummaryDto; |
| | | import com.ruoyi.productionPlan.pojo.ProductionPlan; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <br> |
| | |
| | | * 定时同步 |
| | | */ |
| | | void syncProdDataJob(); |
| | | |
| | | /** |
| | | * 合并生产计划 |
| | | */ |
| | | boolean combine(ProductionPlanDto productionPlanDto); |
| | | |
| | | /** |
| | | * 创建生产计划 |
| | | */ |
| | | boolean add(ProductionPlanDto productionPlanDto); |
| | | |
| | | /** |
| | | * 按照产品类别汇总统计需求量 |
| | | */ |
| | | List<ProductionPlanSummaryDto> summaryByProductType(ProductionPlanSummaryDto query); |
| | | } |