D:/workspace/chenjingjing/git/gx_tieta/gx_tieta/.gitignore
2019-01-18 2fe250ece8de95b3f70172fe5b45793ab6a3084a
gx_tieta/src/com/fgkj/actions/ram/Bts_station_stateAction.java
@@ -27,16 +27,27 @@
       return SUCCESS;
    }
    
  //机房断电统计(首页上的饼状图)
   //机房断电统计(首页上的饼状图)
    public String serchPowerOff(){
       User_inf uinf=(User_inf) ActionUtil.getUser();
       ServiceModel model = service.serchPowerOff(uinf);
      result = tojson(model);             
      return SUCCESS;
    }
  //地图右下角显示出已安装机房中(停电数/掉站数/机房告警数/落后单体机房数)
    public String serchStationState(){
       User_inf uinf=(User_inf) ActionUtil.getUser();
       ServiceModel model = service.serchStationState(uinf);
      result = tojson(model);
      return SUCCESS;
    }
  //查询设备SD卡的实时状态
    public String serchSDCard(){
       BattInf binf=getGson("yyyy-MM-dd HH:mm:ss").fromJson(json, BattInf.class);
       ServiceModel model = service.serchSDCard(binf);
       result=tojson(model);
       return SUCCESS;
    }