| | |
| | | import com.ruoyi.production.bean.dto.ProductionPlanDto; |
| | | import com.ruoyi.production.bean.vo.ProductionPlanVo; |
| | | import com.ruoyi.production.pojo.ProductionPlan; |
| | | import org.springframework.stereotype.Service; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public interface ProductionPlanService extends IService<ProductionPlan> { |
| | | |
| | | IPage<ProductionPlanVo> listPage(Page page, ProductionPlanDto productionPlanDto); |
| | | |
| | | /** |
| | | * 手动同步 |
| | | */ |
| | | void loadProdData(); |
| | | |
| | | /** |
| | | * 定时同步 |
| | | */ |
| | | void syncProdDataJob(); |
| | | IPage<ProductionPlanVo> listPage(Page<ProductionPlanDto> page, ProductionPlanDto productionPlanDto); |
| | | |
| | | /** |
| | | * 合并生产计划 |