| | |
| | | import com.ruoyi.productionPlan.dto.ProductionPlanDto; |
| | | import com.ruoyi.productionPlan.dto.ProductionPlanSummaryDto; |
| | | import com.ruoyi.productionPlan.pojo.ProductionPlan; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | void syncProdDataJob(); |
| | | |
| | | /** |
| | | * 合并生产计划 |
| | | */ |
| | | boolean combine(ProductionPlanDto productionPlanDto); |
| | | |
| | | /** |
| | | * 创建生产计划 |
| | | */ |
| | | boolean add(ProductionPlanDto productionPlanDto); |
| | | |
| | | /** |
| | | * 按照产品类别汇总统计需求量 |
| | | */ |
| | | List<ProductionPlanSummaryDto> summaryByProductType(ProductionPlanSummaryDto query); |
| | | |
| | | /** |
| | | * 导入数据 |
| | | */ |
| | | void importProdData(MultipartFile file); |
| | | |
| | | /** |
| | | * 导出数据 |
| | | */ |
| | | void exportProdData(HttpServletResponse response, List<Long> ids); |
| | | } |