| | |
| | | package com.ruoyi.productionPlan.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | 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.pojo.ProductionPlan; |
| | | |
| | | /** |
| | |
| | | * @since 2026/03/10 10:00 |
| | | */ |
| | | public interface ProductionPlanService extends IService<ProductionPlan> { |
| | | IPage<ProductionPlanDto> listPage(Page page, ProductionPlanDto productionPlanDto); |
| | | |
| | | /** |
| | | * 手动同步 |
| | | */ |
| | | void loadProdData(); |
| | | |
| | | /** |
| | | * 定时同步 |
| | | */ |
| | | void syncProdDataJob(); |
| | | } |