|  |  |  | 
|---|
|  |  |  | public ApiResponse<List<ProcedureProcessModel>> getProcedureProcessList (@PathVariable Integer companyId, @PathVariable Integer departId   ) { | 
|---|
|  |  |  | return ApiResponse.success(statisticsService.getProcedureProcessList(companyId,departId)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | @ApiOperation("成品计划-实时仓库余量统计") | 
|---|
|  |  |  | @GetMapping("/getStockList/{companyId}/{departId}") | 
|---|
|  |  |  | public ApiResponse<List<StockDataModel>> getStockList (@PathVariable Integer companyId, @PathVariable Integer departId   ) { | 
|---|
|  |  |  | return ApiResponse.success(statisticsService.getStockList(companyId,departId)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|