|
@@ -1,6 +1,8 @@
|
|
package com.gyee.consumer.fallback.health;
|
|
package com.gyee.consumer.fallback.health;
|
|
|
|
|
|
import com.gyee.common.domain.AjaxResult;
|
|
import com.gyee.common.domain.AjaxResult;
|
|
|
|
+import com.gyee.consumer.model.Healthsystem;
|
|
|
|
+import com.gyee.consumer.model.Healthsystemsub;
|
|
import com.gyee.consumer.model.Tablepar;
|
|
import com.gyee.consumer.model.Tablepar;
|
|
import com.gyee.consumer.service.health.HealthService;
|
|
import com.gyee.consumer.service.health.HealthService;
|
|
import feign.hystrix.FallbackFactory;
|
|
import feign.hystrix.FallbackFactory;
|
|
@@ -12,211 +14,265 @@ public class HealthServiceFallbackFactory implements FallbackFactory<HealthServi
|
|
public HealthService create(Throwable throwable) {
|
|
public HealthService create(Throwable throwable) {
|
|
return new HealthService() {
|
|
return new HealthService() {
|
|
|
|
|
|
- /***********************************************************************************************************************/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult findAllChart(@RequestParam("wpId") String wpId, @RequestParam("num") String num, @RequestParam("type") String type) throws Exception{
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /***********************************************************************************************************************/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult findAllChart(@RequestParam("wpId") String wpId, @RequestParam("num") String num, @RequestParam("type") String type) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult findAllMap() throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult findAllMap() throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult findWpMap(@RequestParam("wpId") String wpId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult findWpMap(@RequestParam("wpId") String wpId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult findHealthMatrixMap() throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
- /***********************************************************************************************************************/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult findWtHealthInfo(@RequestParam("wpId") String wtId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult findHealthMatrixMap() throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult findWtHealthInfo1(@RequestParam("wpId") String wtId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /***********************************************************************************************************************/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult findWtHealthInfo(@RequestParam("wpId") String wtId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult findWtHealthInfo1(@RequestParam("wpId") String wtId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult findWtHealthInfo2(@RequestParam("wpId") String wtId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult findWtHealthInfo3(@RequestParam("wpId") String wtId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult findWtHealthInfo2(@RequestParam("wpId") String wtId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult findWtHealthInfo3(@RequestParam("wpId") String wtId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult gadaytop5(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult queryStopTop10(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult gadaytop5(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult queryStopTop10(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult getWtMttrandMtbfByBj(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult getWeatherRealDay5Info(@RequestParam("wpId") String wpId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult getWtMttrandMtbfByBj(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult getWeatherRealDay5Info(@RequestParam("wpId") String wpId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult findPowerChar(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult hsFjValueIndex(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult findPowerChar(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult findWtHisValueForBj(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult hsFjValueIndex(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult findWtHisValueForBj(@RequestParam("wtId") String wtId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult hsFjValueIndexByPart(@RequestParam("wtId") String wtId,@RequestParam("type") String type) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
- /***********************************************************************************************************************/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult countWpwarn(@RequestParam("type") String type) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult hsFjValueIndexByPart(@RequestParam("wtId") String wtId, @RequestParam("type") String type) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult countStop(@RequestParam("type") String type) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /***********************************************************************************************************************/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult countWpwarn(@RequestParam("type") String type) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult countWpOrProStatus(@RequestParam("type") String type) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult countStop(@RequestParam("type") String type) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult findWpOrProStatusForHistory(@RequestParam("type") String type,@RequestParam("status") String status) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult countWpOrProStatus(@RequestParam("type") String type) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult findWpOrProStatusForHistory(@RequestParam("type") String type, @RequestParam("status") String status) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
/***********************************************************************************************************************/
|
|
/***********************************************************************************************************************/
|
|
- /**性能损失走势列表**/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult losspowerrateList(@RequestParam("wtId") String wtId,@RequestParam("beginDate") String beginDate,@RequestParam("endDate") String endDate) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /**性能损失走势列表**/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult losspowerrateList(@RequestParam("wtId") String wtId, @RequestParam("beginDate") String beginDate, @RequestParam("endDate") String endDate) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- /**性能损失走势图表**/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult getChartlist(@RequestParam("wtId") String wtId,@RequestParam("beginDate") String beginDate,@RequestParam("endDate") String endDate) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /**性能损失走势图表**/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult getChartlist(@RequestParam("wtId") String wtId, @RequestParam("beginDate") String beginDate, @RequestParam("endDate") String endDate) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- /***********************************************************************************************************************/
|
|
|
|
- /**批次报警分析**/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult partbjList(@RequestParam("recorddate") String recorddate) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /***********************************************************************************************************************/
|
|
|
|
+ /**批次报警分析**/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult partbjList(@RequestParam("recorddate") String recorddate) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
- /**批次报警分析**/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult partbjsubList(@RequestParam("lnid") String lnid,@RequestParam("part") String part,@RequestParam("recorddate") String recorddate) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /**批次报警分析**/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult partbjsubList(@RequestParam("lnid") String lnid, @RequestParam("part") String part, @RequestParam("recorddate") String recorddate) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- /***********************************************************************************************************************/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult stopAnalysisList(@RequestParam("wpId") String wpId,@RequestParam("modelId") String modelId,@RequestParam("typeId") String typeId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /***********************************************************************************************************************/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult stopAnalysisList(@RequestParam("wpId") String wpId, @RequestParam("modelId") String modelId, @RequestParam("typeId") String typeId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult stopAnalysisTree(@RequestParam("mainId") String mainId,@RequestParam("wtId") String wtId, @RequestParam("values") String values) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult stopAnalysisTree(@RequestParam("mainId") String mainId, @RequestParam("wtId") String wtId, @RequestParam("values") String values) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult saveStopAnalysis(@RequestParam("wpId") String wpId,@RequestParam("modelId") String modelId,@RequestParam("typeId") String typeId) throws Exception{
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult saveStopAnalysis(@RequestParam("wpId") String wpId, @RequestParam("modelId") String modelId, @RequestParam("typeId") String typeId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- /***********************************************************************************************************************/
|
|
|
|
- /**单机区间曲线偏差率**/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult windTurbineCurveList(Tablepar tablepar, @RequestParam("wpId") String wpId, @RequestParam("recorddate") String recorddate) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /***********************************************************************************************************************/
|
|
|
|
+ /**单机区间曲线偏差率**/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult windTurbineCurveList(Tablepar tablepar, @RequestParam("wpId") String wpId, @RequestParam("recorddate") String recorddate) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- /**
|
|
|
|
- * @throws
|
|
|
|
- * @Title: scatterWtByDayAjax
|
|
|
|
- * @Description: 获得选择风机、年份、月份相关散点图
|
|
|
|
- */
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult scatterWtByDayAjax(@RequestParam("wtId") String wtId,@RequestParam("recorddate") String recorddate) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @throws
|
|
|
|
+ * @Title: scatterWtByDayAjax
|
|
|
|
+ * @Description: 获得选择风机、年份、月份相关散点图
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult scatterWtByDayAjax(@RequestParam("wtId") String wtId, @RequestParam("recorddate") String recorddate) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- /***********************************************************************************************************************/
|
|
|
|
- /**风机健康列表**/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult windTurbineHealthList(@RequestParam("wpId") String wpId) throws Exception {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /***********************************************************************************************************************/
|
|
|
|
+ /**风机健康列表**/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult windTurbineHealthList(@RequestParam("wpId") String wpId) throws Exception {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult warehouse(){
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult warehouse() {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
|
|
- /***********************************************************************************************************************/
|
|
|
|
|
|
+ /***********************************************************************************************************************/
|
|
|
|
|
|
- /**故障分析雷达图**/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult gzfx(@RequestParam(value = "stationid", required = true) String stationid,
|
|
|
|
- @RequestParam(value = "date", required = true) String date){
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
- /***********************************************************************************************************************/
|
|
|
|
- /**预警分析雷达图**/
|
|
|
|
- @Override
|
|
|
|
- public AjaxResult yjfx(@RequestParam(value = "stationid", required = true) String stationid,
|
|
|
|
- @RequestParam(value = "date", required = true) String date) {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
- }
|
|
|
|
|
|
+ /**故障分析雷达图**/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult gzfx(@RequestParam(value = "stationid", required = true) String stationid,
|
|
|
|
+ @RequestParam(value = "date", required = true) String date) {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
/***********************************************************************************************************************/
|
|
/***********************************************************************************************************************/
|
|
|
|
+ /**预警分析雷达图**/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult yjfx(@RequestParam(value = "stationid", required = true) String stationid,
|
|
|
|
+ @RequestParam(value = "date", required = true) String date) {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /***********************************************************************************************************************/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult detail(@RequestParam(name = "station") String station,
|
|
|
|
+ @RequestParam(name = "wtId") String wtId,
|
|
|
|
+ @RequestParam(name = "name") String name,
|
|
|
|
+ @RequestParam(name = "startTs") long startTs,
|
|
|
|
+ @RequestParam(name = "endTs") long endTs,
|
|
|
|
+ @RequestParam(name = "interval", required = false) Integer interval) {
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+ /************************************************************************************************/
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult healthsystemList(Tablepar tablepar) throws Exception{
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult healthsystemDelete(@RequestParam("ids")String ids) throws Exception{
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult healthsystemSelect(@RequestParam("id")String id) throws Exception{
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult healthsystemUpdate( Healthsystem record) throws Exception{
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult healthsystemInsert( Healthsystem record) throws Exception{
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult healthsystemsubList( Tablepar tablepar) throws Exception{
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult healthsystemsubDelete(@RequestParam("ids") String ids) throws Exception{
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult healthsystemsubSelect(@RequestParam("id") String id) throws Exception{
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult healthsystemsubUpdate(Healthsystemsub record) throws Exception{
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
|
|
+ }
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
- public AjaxResult detail( @RequestParam(name = "station") String station,
|
|
|
|
- @RequestParam(name = "wtId") String wtId,
|
|
|
|
- @RequestParam(name = "name") String name,
|
|
|
|
- @RequestParam(name = "startTs") long startTs,
|
|
|
|
- @RequestParam(name = "endTs") long endTs,
|
|
|
|
- @RequestParam(name = "interval", required = false) Integer interval) {
|
|
|
|
- return AjaxResult.error(throwable.getMessage());
|
|
|
|
|
|
+ public AjaxResult healthsystemsubInsert( Healthsystemsub record) throws Exception{
|
|
|
|
+ return AjaxResult.error(throwable.getMessage());
|
|
}
|
|
}
|
|
};
|
|
};
|
|
}
|
|
}
|