jiangping
2024-11-18 422b8f74f9a602484cce319e302bf9baf127087d
server/visits/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java
@@ -743,6 +743,144 @@
      return startDoPostStringArtemis(HKConstants.InterfacePath.platformsList,body);
   }
   /**
    * 获取消防传感器列表
    * @param body
    * @return
    */
   public static String pageFireChannel(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.pageFireChannel,body);
   }
   /**
    * 查询消防传感器部件状态v2
    * @param body
    * @return
    */
   public static String pageSensorStatus(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.pageSensorStatus,body);
   }
   /**
    * 安防看板-今日告警事件-根据eventType字段3
    * @param body
    * @return
    */
   public static String ruleEventSearch(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.ruleEventSearch,body);
   }
   /**
    * 安防看板-园区安防设备-各类型设备状态数据列表
    * @param body
    * @return
    */
   public static String getSecureDevStatusList(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.getSecureDevStatusList,body);
   }
   /**
    * 能耗看板-6按月查询近12个月的用电总量数据
    * @param body
    * @return
    */
   public static String energyTrend(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.energyTrend,body);
   }
   /**
    * 消防维保统计
    * @param body
    * @return
    */
   public static String fireStatistic(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.fireStatistic,body);
   }
   /**
    * 消防看板-消防设备在离线1
    * @param body
    * @return
    */
   public static String getFireDevStatusTotal(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.getFireDevStatusTotal,body);
   }
   /**
    * 消防看板-各类型设备在线率2
    * @param body
    * @return
    */
   public static String getFireDevStatusList(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.getFireDevStatusList,body);
   }
   /**
    *消防看板-4报警信息统计
    * @param body
    * @return
    */
   public static String findAlarmBaseDataStatistic(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.findAlarmBaseDataStatistic,body);
   }
   /**
    *安防看板-- 分页查询未处理报警信息6
    * @param body
    * @return
    */
   public static String findHomeAlarmInfoPage(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.findHomeAlarmInfoPage,body);
   }
   /**
    *分页查询设备监测历史数据
    * @param body
    * @return
    */
   public static String minitorDataSearch(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.minitorDataSearch,body);
   }
   /**
    * 统计园区总体的安防设备数量,在线数、在线率、离线数、离线率
    * @param body
    * @return
    */
   public static String getSecureDevStatusTotal(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.getSecureDevStatusTotal,body);
   }
   /**
    * 统安防看板--园区实时车数量4
    * @return
    */
   public static String getParkingStatistics() {
      return startDoGetStringArtemis(HKConstants.InterfacePath.getParkingStatistics,null);
   }
   /**
    * 能耗看板-1.获取本月用能总量-自然月
    * @return
    */
   public static String getCurrentMonthDataByMeterType(Map<String,String>   powerType) {
      return startDoGetStringArtemis(HKConstants.InterfacePath.getCurrentMonthDataByMeterType,powerType);
   }
   /**
    * 能耗看板-2.获取区域用能前N位
    * @return
    */
   public static String regionTopPower(Map<String,String>   params) {
      return startDoGetStringArtemis(HKConstants.InterfacePath.regionTopPower,params);
   }
   /**
    * 能耗看板-3.获取各区域用能及总能耗
    * @return
    */
   public static String regionEnergyList(Map<String,String>   params) {
      return startDoGetStringArtemis(HKConstants.InterfacePath.regionEnergyList,params);
   }
   /**
    * 能耗看板-4.获取上月用能费用,一天刷新,凌晨某个点刷
    * @return
    */
   public static String lastMonthFeeByMeterType(Map<String,String>   params) {
      return startDoGetStringArtemis(HKConstants.InterfacePath.lastMonthFeeByMeterType,params);
   }
   /**
    * 能耗看板-5.园区实时负荷曲线
    * @return
    */
   public static String energyTodayLoadData( ) {
      return startDoGetStringArtemis(HKConstants.InterfacePath.energyTodayLoadData,null);
   }
   /**
    * 获取月台状态
    * @return
    */
@@ -754,9 +892,48 @@
      }
   }
   /**
    * 获取菜单
    * @param body
    * @return
    */
   public static String getHkMenu(Map<String,String> body) {
      return startDoGetStringArtemis(HKConstants.InterfacePath.getMenus,body);
   }
   /**
    * 分页获取区域列表
    * @param body
    * @return
    */
   public static String pageRegions(Map<String,String> header,String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.pageRegions,null,header,body);
   }
   /**
    * 分页获取监控点资源
    * @param body
    * @return
    */
   public static String pageCameras(Map<String,String> header,String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.pageCameras,null,header,body);
   }
   /**
    * 获取监控点预览取流URL
    * @param body
    * @return
    */
   public static String cameraPreviewURLs(Map<String,String> header,String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.cameraPreviewURLs,null,header,body);
   }
   /**
    * 发送短信验证码
    * @param body
    * @return
    */
   public static String sendSms(String body) {
      return startDoPostStringArtemis(HKConstants.InterfacePath.sendSms,body);
   }
   /**
    * 获取月台组件配置的LED设备清单