This commit is contained in:
parent
3501c258f7
commit
4c8a65cd54
|
|
@ -32,6 +32,11 @@ public class LargeScreenController extends BaseController {
|
||||||
return service.getMaterialReqData();
|
return service.getMaterialReqData();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 宁夏大屏二级页面
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
@Log(title = "领料数据详情", businessType = BusinessType.QUERY)
|
@Log(title = "领料数据详情", businessType = BusinessType.QUERY)
|
||||||
@PostMapping("getMaterialReqData/details")
|
@PostMapping("getMaterialReqData/details")
|
||||||
public AjaxResult getMaterialReqDetailData(@RequestBody ParamsDto dto) {
|
public AjaxResult getMaterialReqDetailData(@RequestBody ParamsDto dto) {
|
||||||
|
|
@ -49,6 +54,11 @@ public class LargeScreenController extends BaseController {
|
||||||
return service.getMaterialReturnData();
|
return service.getMaterialReturnData();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 宁夏大屏二级页面
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
@Log(title = "退料数据详情", businessType = BusinessType.QUERY)
|
@Log(title = "退料数据详情", businessType = BusinessType.QUERY)
|
||||||
@PostMapping("getMaterialReturnData/details")
|
@PostMapping("getMaterialReturnData/details")
|
||||||
public AjaxResult getMaterialReturnDetailData(@RequestBody ParamsDto dto) {
|
public AjaxResult getMaterialReturnDetailData(@RequestBody ParamsDto dto) {
|
||||||
|
|
@ -72,6 +82,11 @@ public class LargeScreenController extends BaseController {
|
||||||
return service.getTotalOwnership();
|
return service.getTotalOwnership();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 宁夏大屏二级页面
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
@Log(title = "施工机具/安全工器具总保有量详情",businessType = BusinessType.QUERY)
|
@Log(title = "施工机具/安全工器具总保有量详情",businessType = BusinessType.QUERY)
|
||||||
@PostMapping("getTotalOwnership/details")
|
@PostMapping("getTotalOwnership/details")
|
||||||
public AjaxResult getTotalOwnerDetailsShip(@RequestBody ParamsDto dto) {
|
public AjaxResult getTotalOwnerDetailsShip(@RequestBody ParamsDto dto) {
|
||||||
|
|
@ -95,6 +110,11 @@ public class LargeScreenController extends BaseController {
|
||||||
return service.getScrapAnalysisByMonth(dto);
|
return service.getScrapAnalysisByMonth(dto);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 宁夏大屏二级页面
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
@Log(title = "当月报废分析详情", businessType = BusinessType.QUERY)
|
@Log(title = "当月报废分析详情", businessType = BusinessType.QUERY)
|
||||||
@PostMapping("getScrapAnalysisByMonth/details")
|
@PostMapping("getScrapAnalysisByMonth/details")
|
||||||
public AjaxResult getScrapAnalysisDetailByMonth(@RequestBody ParamsDto dto) {
|
public AjaxResult getScrapAnalysisDetailByMonth(@RequestBody ParamsDto dto) {
|
||||||
|
|
@ -112,6 +132,11 @@ public class LargeScreenController extends BaseController {
|
||||||
return service.getAcceptanceStorage(dto);
|
return service.getAcceptanceStorage(dto);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 宁夏大屏二级页面
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
@Log(title = "新购验收入库分析详情",businessType = BusinessType.QUERY)
|
@Log(title = "新购验收入库分析详情",businessType = BusinessType.QUERY)
|
||||||
@PostMapping("getAcceptanceStorage/details")
|
@PostMapping("getAcceptanceStorage/details")
|
||||||
public AjaxResult getAcceptanceDetailStorage(@RequestBody ParamsDto dto) {
|
public AjaxResult getAcceptanceDetailStorage(@RequestBody ParamsDto dto) {
|
||||||
|
|
@ -129,6 +154,11 @@ public class LargeScreenController extends BaseController {
|
||||||
return service.getPickingAnalysisByMonth(dto);
|
return service.getPickingAnalysisByMonth(dto);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 宁夏大屏二级页面
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
@Log(title = "当月领料分析详情", businessType = BusinessType.QUERY)
|
@Log(title = "当月领料分析详情", businessType = BusinessType.QUERY)
|
||||||
@PostMapping("getPickingAnalysisByMonth/details")
|
@PostMapping("getPickingAnalysisByMonth/details")
|
||||||
public AjaxResult getPickingAnalysisDetailByMonth(@RequestBody ParamsDto dto) {
|
public AjaxResult getPickingAnalysisDetailByMonth(@RequestBody ParamsDto dto) {
|
||||||
|
|
@ -146,6 +176,11 @@ public class LargeScreenController extends BaseController {
|
||||||
return service.getMaterialReturnByMonth(dto);
|
return service.getMaterialReturnByMonth(dto);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 宁夏大屏二级页面
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
@Log(title = "当月退料分析详情", businessType = BusinessType.QUERY)
|
@Log(title = "当月退料分析详情", businessType = BusinessType.QUERY)
|
||||||
@PostMapping("getMaterialReturnByMonth/details")
|
@PostMapping("getMaterialReturnByMonth/details")
|
||||||
public AjaxResult getMaterialReturnDetailByMonth(@RequestBody ParamsDto dto) {
|
public AjaxResult getMaterialReturnDetailByMonth(@RequestBody ParamsDto dto) {
|
||||||
|
|
@ -169,6 +204,11 @@ public class LargeScreenController extends BaseController {
|
||||||
return service.getMaintenanceChartByMonth(dto);
|
return service.getMaintenanceChartByMonth(dto);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 宁夏大屏二级页面
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
@Log(title = "当月维修分析详情", businessType = BusinessType.QUERY)
|
@Log(title = "当月维修分析详情", businessType = BusinessType.QUERY)
|
||||||
@PostMapping("getMaintenanceByMonth/details")
|
@PostMapping("getMaintenanceByMonth/details")
|
||||||
public AjaxResult getMaintenanceDetailByMonth(@RequestBody ParamsDto dto) {
|
public AjaxResult getMaintenanceDetailByMonth(@RequestBody ParamsDto dto) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue