|
|
@ -97,4 +97,14 @@ public class EmsReportPointSteamController extends BaseController {
|
|
|
|
public AjaxResult remove(@PathVariable Long[] objIds) {
|
|
|
|
public AjaxResult remove(@PathVariable Long[] objIds) {
|
|
|
|
return toAjax(emsReportPointSteamService.deleteEmsReportPointSteamByObjIds(objIds));
|
|
|
|
return toAjax(emsReportPointSteamService.deleteEmsReportPointSteamByObjIds(objIds));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 查询蒸汽整点数据曲线
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@PreAuthorize("@ss.hasPermi('ems/report:reportPointSteam:list')")
|
|
|
|
|
|
|
|
@GetMapping("/pointSteamInstantList")
|
|
|
|
|
|
|
|
public AjaxResult pointSteamInstantList(EmsReportPointSteam emsReportPointSteam) {
|
|
|
|
|
|
|
|
return success(emsReportPointSteamService.selectEmsReportPointSteamList(emsReportPointSteam));
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|