|
@@ -26,11 +26,11 @@ public class EbapersisController {
|
|
@ResponseBody
|
|
@ResponseBody
|
|
@CrossOrigin
|
|
@CrossOrigin
|
|
@ApiOperation(value = "EBA能效分析", notes = "EBA能效分析")
|
|
@ApiOperation(value = "EBA能效分析", notes = "EBA能效分析")
|
|
- public AjaxResult getEBAPerSisList(@RequestParam(value = "companyid") String companyid,
|
|
|
|
- @RequestParam(value = "regionid") String regionid,
|
|
|
|
- @RequestParam(value = "station") String station,
|
|
|
|
- @RequestParam(value = "year") String year,
|
|
|
|
- @RequestParam(value = "month") String month) {
|
|
|
|
|
|
+ public AjaxResult getEBAPerSisList(@RequestParam(value = "companyid", required = false) String companyid,
|
|
|
|
+ @RequestParam(value = "regionid", required = false) String regionid,
|
|
|
|
+ @RequestParam(value = "station", required = false) String station,
|
|
|
|
+ @RequestParam(value = "year", required = true) String year,
|
|
|
|
+ @RequestParam(value = "month", required = true) String month) {
|
|
|
|
|
|
AjaxResult ajax = ebapersisService.getEBAPerSisList(companyid,regionid,station,year,month);
|
|
AjaxResult ajax = ebapersisService.getEBAPerSisList(companyid,regionid,station,year,month);
|
|
|
|
|