123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.steerinfo.dil.controller;
- import com.steerinfo.dil.service.impl.StatisticalReportImpl;
- import com.steerinfo.dil.util.BaseRESTfulController;
- import com.steerinfo.dil.util.ColumnDataUtil;
- import com.steerinfo.dil.util.PageListAdd;
- import com.steerinfo.framework.controller.RESTfulResult;
- import com.steerinfo.framework.service.pagehelper.PageHelper;
- import io.swagger.annotations.ApiImplicitParam;
- import io.swagger.annotations.ApiImplicitParams;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- /**
- * @ author :TXF
- * @ time :2021/12/14 18:05
- */
- @RestController
- @RequestMapping("/${api.version}/statisticalReport")
- public class StatisticalReportController extends BaseRESTfulController {
- @Autowired
- StatisticalReportImpl statisticalReportService;
- @Autowired
- ColumnDataUtil columnDataUtil;
- @ApiOperation(value="查询辅料燃料统计报表")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(220)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getRLFLReport")
- public RESTfulResult getRLFLReport(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize,
- Integer orderType
- ){
- mapValue.put("orderTypee", orderType);
- List<Map<String, Object>> allReport = statisticalReportService.getAllPurchaseFLRLReport(mapValue);
- PageHelper.startPage(pageNum, pageSize);
- //分页数据
- List<Map<String, Object>> report = statisticalReportService.getRLFLReport(mapValue);
- PageListAdd pageList = columnDataUtil.tableColumnData(apiId, allReport,report);
- return success(pageList);
- }
- }
|