| | |
| | | ) |
| | | .eq("c.DELETED",0) |
| | | .eq("c.status",0) |
| | | .eq("m.WORK_STATUS",0) |
| | | .orderByAsc("c.id") |
| | | ); |
| | | String path = systemDictDataBiz.queryByCode(Constants.FTP,Constants.FTP_RESOURCE_PATH).getCode() |
| | |
| | | @Select(" select c.id , c.type , c.REALNAME as realName , c.userName as userName , c.avatar ," + |
| | | " c.wechat_name as wechatName , c.mobile , c.sex , c.birthday , c.avatar , d.COMPANY_NAME_PATH as departmentName " + |
| | | " from system_user c " + |
| | | " INNER JOIN company d on c.COMPANY_ID = d.id " + |
| | | " INNER JOIN company d on c.COMPANY_ID = d.id " + |
| | | " LEFT JOIN member m on c.member_id = m.id " + |
| | | " ${ew.customSqlSegment} ") |
| | | IPage<UserResponse> getUserPage(IPage<UserResponse> page, @Param(Constants.WRAPPER) Wrapper wrapper); |
| | | |
| | |
| | | @ApiModelProperty(value = "æ¯å¦æ¥è¯¢åºå®äººåç»ç»ä¸»é®" ,hidden = true) |
| | | private String companySpecialId; |
| | | |
| | | @ApiModelProperty(value = "å¨èç¶æ 0å¨è 1离è" ) |
| | | private Integer workStatus; |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | |
| | | <if test="dto.status != null "> |
| | | AND usr.`status` = #{dto.status} |
| | | </if> |
| | | <if test="dto.workStatus != null "> |
| | | AND m.WORK_STATUS = #{dto.workStatus} |
| | | </if> |
| | | <if test="dto.memberType != null "> |
| | | AND m.`type` = #{dto.memberType} |
| | | </if> |
| | |
| | | return ApiResponse.success( HKService.temperatureHumidityDataStatistic(request)); |
| | | } |
| | | |
| | | @ApiOperation("ãæµ·åº·ãæ ¹æ®æ¶é´åæ¶é´ç»´åº¦è·åååºè½èæ°æ®") |
| | | @PostMapping("/energyTotal") |
| | | @LoginNoRequired |
| | | public ApiResponse<BaseResponse<EnergyTotalDataResponse>> energyTotalData(@RequestBody EnergyTotalDataRequest request, HttpServletResponse response) { |
| | | return ApiResponse.success( HKService.energyTotal(request)); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("ãæµ·åº·ãè·ååºåç¨éæå-è½èçæ¿") |
| | | @PostMapping("/regionDataRanking") |
| | | @LoginNoRequired |
| | | public ApiResponse<BaseResponse<List<RegionDataRankingDataResponse>>> regionDataRankingData(@RequestBody RegionDataRankingDataRequest request, HttpServletResponse response) { |
| | | return ApiResponse.success( HKService.regionDataRanking(request)); |
| | | } |
| | | |
| | | |
| | | |
| | | } |
| | |
| | | |
| | | import com.doumee.api.BaseController; |
| | | import com.doumee.config.annotation.LoginNoRequired; |
| | | import com.doumee.core.haikang.model.param.BaseResponse; |
| | | import com.doumee.core.haikang.model.param.request.RegionDataRankingTypeRequest; |
| | | import com.doumee.core.haikang.model.param.respose.RegionDataRankingDataResponse; |
| | | import com.doumee.core.haikang.model.param.respose.RegionEnergyListResponse; |
| | | import com.doumee.core.haikang.service.HKService; |
| | | import com.doumee.core.model.ApiResponse; |
| | | import com.doumee.core.utils.Constants; |
| | | import com.doumee.dao.web.response.platformReport.*; |
| | |
| | | import io.swagger.annotations.*; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @ApiOperation("ä¸å¿æ°æ®") |
| | | @GetMapping("/centerData") |
| | | public ApiResponse<EnergyBoardVO> centerData() { |
| | | |
| | | EnergyBoardVO data =boardService.centerEnergyData(); |
| | | |
| | | return ApiResponse.success(data); |
| | | } |
| | | |
| | | |
| | | |
| | | @LoginNoRequired |
| | | @ApiOperation("ä¸å¿ç¨çµè½èæ°æ®") |
| | | @GetMapping("/regionDataRanking") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", dataType = "Integer", name = "type", value = "æ¥è¯¢ç±»åï¼1=仿¥ï¼2=æ¬æï¼3=æ¨æ¥", required = true), |
| | | }) |
| | | public ApiResponse<List<RegionDataRankingDataResponse>> regionDataRanking(@RequestParam Integer type) { |
| | | return ApiResponse.success(boardService.getRegionDataRanking(type)); |
| | | } |
| | | |
| | | |
| | | @LoginNoRequired |
| | |
| | | @ApiOperation("宿¶è´è·æ²çº¿") |
| | | @GetMapping("/loadCurve") |
| | | public ApiResponse<List<EnergyDataVO>> loadCurve() { |
| | | |
| | | List<EnergyDataVO> loadCurveList =boardService.loadEnergyCurve(); |
| | | return ApiResponse.success(loadCurveList); |
| | | } |
| | |
| | | String[] minitorDataSearch= new String[]{"/api/fpms/v2/minitor/data/search","å页æ¥è¯¢è®¾å¤çæµå岿°æ®"};//å页æ¥è¯¢è®¾å¤çæµå岿°æ® |
| | | String[] userOpenidSave= new String[]{"/api/v1/oa/userOpenId/saveV2","ä¿åç¨æ·åopenIdç»å®ä¿¡æ¯å¾®ä¿¡å
¬ä¼å·"};//ä¿åç¨æ·åopenIdç»å®ä¿¡æ¯å¾®ä¿¡å
¬ä¼å· |
| | | String[] temperatureHumidityDataStatistic= new String[]{"/api/v2/public/monitor/sensor/list","æ¶é²çæ¿-4温湿度ç»è®¡"};//æ¶é²çæ¿-温湿度 |
| | | String[] regionDataRanking= new String[]{"/api/ecm/v1/energy/regionDataRanking","æ¶é²çæ¿-4è·ååºåç¨éæå-è½èçæ¿"};//æ¶é²çæ¿-è·ååºåç¨éæå - è½èçæ¿ |
| | | String[] energyTotal= new String[]{"/api/ecm/v1/energy/energyTotal","æ¶é²çæ¿-4æ ¹æ®æ¶é´åæ¶é´ç»´åº¦è·åååºè½èæ°æ®"};//æ¶é²çæ¿-æ ¹æ®æ¶é´åæ¶é´ç»´åº¦è·åååºè½èæ°æ® |
| | | } |
| | | /** |
| | | * éå½A.55æ¶é²è®¾å¤ç±»å |
| | |
| | | return startDoPostStringArtemisAdmin(HKConstants.InterfacePath.temperatureHumidityDataStatistic,body); |
| | | } |
| | | |
| | | /** |
| | | *æ¶é²çæ¿-4è·ååºåç¨éæå-è½èçæ¿ |
| | | * @param body |
| | | * @return |
| | | */ |
| | | public static String regionDataRanking(String body) { |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.regionDataRanking,body); |
| | | } |
| | | |
| | | /** |
| | | *æ¶é²çæ¿-4æ ¹æ®æ¶é´åæ¶é´ç»´åº¦è·åååºè½èæ°æ® |
| | | * @param body |
| | | * @return |
| | | */ |
| | | public static String energyTotal(String body) { |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.energyTotal,body); |
| | | } |
| | | |
| | | /** |
| | | * è·åé¨ç¦ç¹å表 |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.doumee.core.haikang.model.param.request; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class EnergyTotalDataRequest { |
| | | |
| | | @ApiModelProperty(value = "æ¶é´ç»´åº¦day/month/year") |
| | | private String periodType; |
| | | |
| | | @ApiModelProperty(value = "æ¥è¯¢æ¥æ") |
| | | private String date; |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.doumee.core.haikang.model.param.request; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class RegionDataRankingDataRequest { |
| | | |
| | | @ApiModelProperty(value = "æ¶é´ç»´åº¦day/month/year") |
| | | private String periodType; |
| | | |
| | | @ApiModelProperty(value = "æ¥è¯¢æ¥æ") |
| | | private String date; |
| | | |
| | | @ApiModelProperty(value = "仪表类å(1:çµè¡¨;2:水表;3:æ°è¡¨;4:ç表)") |
| | | private Integer meterType; |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.doumee.core.haikang.model.param.request; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class RegionDataRankingTypeRequest { |
| | | |
| | | @ApiModelProperty(value = "æ¥è¯¢ç±»åï¼1=仿¥ï¼2=æ¬æï¼3=æ¨æ¥") |
| | | private Integer queryType; |
| | | |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.doumee.core.haikang.model.param.respose; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class EnergyTotalDataResponse { |
| | | |
| | | @ApiModelProperty(value = "ç¨çµæ»é") |
| | | private String electricity; |
| | | |
| | | @ApiModelProperty(value = "ç¨æ°´æ»é") |
| | | private String water; |
| | | |
| | | @ApiModelProperty(value = "ç¨æ°æ»é") |
| | | private String gas; |
| | | |
| | | @ApiModelProperty(value = "ç¨çæ»é") |
| | | private String heat; |
| | | |
| | | @ApiModelProperty(value = "èªå®ä¹æ»é") |
| | | private String extend ; |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.doumee.core.haikang.model.param.respose; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class RegionDataRankingDataResponse { |
| | | |
| | | @ApiModelProperty(value = "åºå") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "çµé") |
| | | private String value; |
| | | |
| | | @ApiModelProperty(value = "ç¾åæ¯") |
| | | private String percent; |
| | | |
| | | } |
| | |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | | *æ¶é²çæ¿-4è·ååºåç¨éæå-è½èçæ¿ |
| | | * @return |
| | | */ |
| | | public static BaseResponse<List<RegionDataRankingDataResponse>> regionDataRanking(RegionDataRankingDataRequest param){ |
| | | log.info("ãæµ·åº·æ¶é²çæ¿-4è·ååºåç¨éæå-è½èçæ¿ã================å¼å§===="+JSONObject.toJSONString(param)); |
| | | try { |
| | | String res = HKTools.regionDataRanking(JSONObject.toJSONString(param)); |
| | | TypeReference typeReference = |
| | | new TypeReference< BaseResponse<List<RegionDataRankingDataResponse> >>(){}; |
| | | BaseResponse<List<RegionDataRankingDataResponse>> result = JSONObject.parseObject(res, typeReference.getType()); |
| | | logResult(result,"海康æ¶é²çæ¿-4è·ååºåç¨éæå-è½èçæ¿"); |
| | | return result; |
| | | }catch (Exception e){ |
| | | log.error("ãæµ·åº·æ¶é²çæ¿-4è·ååºåç¨éæå-è½èçæ¿ã================失败====ï¼\n"+ e.getMessage()); |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | |
| | | /** |
| | | *æ¶é²çæ¿-4è·ååºåç¨éæå-è½èçæ¿ |
| | | * @return |
| | | */ |
| | | public static BaseResponse<EnergyTotalDataResponse> energyTotal(EnergyTotalDataRequest param){ |
| | | log.info("ãæµ·åº·æ¶é²çæ¿-4æ ¹æ®æ¶é´åæ¶é´ç»´åº¦è·åååºè½èæ°æ®ã================å¼å§===="+JSONObject.toJSONString(param)); |
| | | try { |
| | | String res = HKTools.energyTotal(JSONObject.toJSONString(param)); |
| | | TypeReference typeReference = |
| | | new TypeReference< BaseResponse<EnergyTotalDataResponse >>(){}; |
| | | BaseResponse<EnergyTotalDataResponse> result = JSONObject.parseObject(res, typeReference.getType()); |
| | | logResult(result,"海康æ¶é²çæ¿-4æ ¹æ®æ¶é´åæ¶é´ç»´åº¦è·åååºè½èæ°æ®"); |
| | | return result; |
| | | }catch (Exception e){ |
| | | log.error("ãæµ·åº·æ¶é²çæ¿-4æ ¹æ®æ¶é´åæ¶é´ç»´åº¦è·åååºè½èæ°æ®ã================失败====ï¼\n"+ e.getMessage()); |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | |
| | | /** |
| | | *å页æ¥è¯¢æ¶é²è®¾å¤é¨ä»¶ç¶æ |
| | |
| | | private Integer areaId; |
| | | |
| | | @ApiModelProperty(value = "ç¶æ 0å¾
å¤ç 1å·²å¤ç 2ä¸å¤ç", example = "1") |
| | | @ExcelColumn(name="å¤çç»æ" ,valueMapping ="0=0å¾
å¤ç;1=å·²å¤ç;2=ä¸å¤ç;",index = 5) |
| | | @ExcelColumn(name="å¤çç»æ" ,valueMapping ="0=0å¾
å¤ç;1=å·²å¤ç;2=ä¸å¤ç;",index = 5,width = 6) |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value = "ç³è¯·å¤ç人ç¼ç (å
³èmember)", example = "1") |
| | |
| | | private Integer checkUserId; |
| | | |
| | | @ApiModelProperty(value = "åºååç§°") |
| | | @ExcelColumn(name="鿣åºå",index = 1) |
| | | @ExcelColumn(name="鿣åºå",index = 1,width = 10) |
| | | private String areaName; |
| | | |
| | | @ApiModelProperty(value = "ç³è¯·äººå§å", example = "1") |
| | | @TableField(exist = false) |
| | | @ExcelColumn(name="ææ¥äººå§å",index =3) |
| | | @ExcelColumn(name="ææ¥äººå§å",index =3,width = 6) |
| | | private String memberName; |
| | | @ApiModelProperty(value = "ç³è¯·äººæå±ç»ç»åç§°", example = "1") |
| | | @TableField(exist = false) |
| | |
| | | private String companyName; |
| | | @ApiModelProperty(value = "责任é¨é¨åç§°", example = "1") |
| | | @TableField(exist = false) |
| | | @ExcelColumn(name="责任é¨é¨åç§°",index = 0) |
| | | @ExcelColumn(name="责任é¨é¨åç§°",index = 0,width = 10) |
| | | private String dutyCompanyName; |
| | | @ApiModelProperty(value = "ç³è¯·äººææºå·", example = "1") |
| | | @TableField(exist = false) |
| | |
| | | private String checkorPhone; |
| | | @ApiModelProperty(value = "éæ£ç±»ååç§°", example = "1") |
| | | @TableField(exist = false) |
| | | @ExcelColumn(name="éæ£ç±»å",index = 2) |
| | | @ExcelColumn(name="éæ£ç±»å",index = 2,width = 10) |
| | | private String categoryName; |
| | | |
| | | @ApiModelProperty(value = "æ¥è¯¢å¼å§æ¶é´ï¼åºäºææ¥æ¶é´ï¼", example = "2024-05-20 11:48:50") |
| | |
| | | |
| | | @ApiModelProperty(value = "ææ¥æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ExcelColumn(name="ææ¥æ¶é´",index = 6,dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | @ExcelColumn(name="ææ¥æ¶é´",index = 6,dateFormat = "yyyy-MM-dd HH:mm:ss",width = 18) |
| | | private Date submitTime; |
| | | |
| | | @ApiModelProperty(value = "å¤çæ¶é´ï¼æ´æ¹/éå使ç¨ï¼") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ExcelColumn(name="å¤çæ¶é´",index = 7 ,dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | @ExcelColumn(name="å¤çæ¶é´",index = 7 ,dateFormat = "yyyy-MM-dd HH:mm:ss",width = 18) |
| | | private Date dealTime; |
| | | |
| | | @ApiModelProperty(value = "éä»¶ä¿¡æ¯") |
| | |
| | | @ExcelColumn(name="å
¥åºç±»å",index = 7,width = 12,valueMapping = "0=æ´æç;1=ä»¶ç;") |
| | | private Integer inType; |
| | | |
| | | @ApiModelProperty(value = "æ»è¿è¾é", example = "1") |
| | | @ExcelColumn(name="æ»è¿è¾é",index = 2,width = 12) |
| | | @ApiModelProperty(value = "æ»ä½ä¸é(䏿¯)", example = "1") |
| | | @ExcelColumn(name="æ»ä½ä¸é(䏿¯)",index = 2,width = 12) |
| | | private BigDecimal totalNum; |
| | | |
| | | @ApiModelProperty(value = "å车çå·") |
| | |
| | | public class PlatformWaterGasForExcelVO { |
| | | |
| | | @ApiModelProperty(value = "æ´æ°æ¶é´") |
| | | @ExcelColumn(name="æè¿æä½æ¶é´",index = 5,dateFormat="yyyy-MM-dd HH:mm",width = -1) |
| | | @ExcelColumn(name="æè¿æä½æ¶é´",index = 5,dateFormat="yyyy-MM-dd HH:mm",width = 20) |
| | | private Date editDate; |
| | | |
| | | @ApiModelProperty(value = "æ¶é´ï¼å¹´æï¼") |
| | | @ExcelColumn(name="ä½¿ç¨æä»½",index = 2,dateFormat="yyyy-MM") |
| | | @ExcelColumn(name="ä½¿ç¨æä»½",index = 2,dateFormat="yyyy-MM",width = 10) |
| | | private Date timeInfo; |
| | | |
| | | @ApiModelProperty(value = "ç±»å 0ç¨æ°´ 1ç¨æ° 2ç¨æ²¹", example = "1") |
| | | @ExcelColumn(name="ç±»å",valueMapping = "0=ç¨æ°´;1=ç¨æ°;2=ç¨æ²¹;",index = 0) |
| | | @ExcelColumn(name="ç±»å",valueMapping = "0=ç¨æ°´;1=ç¨æ°;2=ç¨æ²¹;",index = 0,width = 10) |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "æ°é (ç¨çµé¡¿ï¼ç¨çµåº¦ï¼ æ²¹èLï¼", example = "1") |
| | | @ExcelColumn(name="æ°é",index = 3) |
| | | @ExcelColumn(name="æ°é",index = 3,width = 10) |
| | | private BigDecimal num; |
| | | |
| | | @ApiModelProperty(value = "说æ") |
| | | @ExcelColumn(name="说æ",index = 4) |
| | | @ExcelColumn(name="说æ",index = 4,width = 20) |
| | | private String content; |
| | | } |
| | |
| | | package com.doumee.dao.web.response.platformReport; |
| | | |
| | | import com.doumee.core.haikang.model.param.respose.RegionDataRankingDataResponse; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * Created by IntelliJ IDEA. |
| | |
| | | @ApiModelProperty(value = "忝å¼" ,hidden = true) |
| | | private BigDecimal sameNum; |
| | | |
| | | @ApiModelProperty(value = "å个åºåç¨çµä¿¡æ¯") |
| | | private List<RegionDataRankingDataResponse> regionDataRankingDataList; |
| | | |
| | | } |
| | |
| | | return hiddenDangerMapper.selectCount(wrapper); |
| | | } |
| | | |
| | | |
| | | |
| | | @Override |
| | | @Transactional(rollbackFor = {Exception.class,BusinessException.class}) |
| | | public void dealHiddenDanger(HiddenDanger hiddenDanger){ |
| | |
| | | import com.doumee.core.haikang.model.param.respose.*; |
| | | import com.doumee.core.haikang.service.HKCarOpenService; |
| | | import com.doumee.core.haikang.service.HKService; |
| | | import com.doumee.core.model.ApiResponse; |
| | | import com.doumee.core.model.PageData; |
| | | import com.doumee.core.model.PageWrap; |
| | | import com.doumee.core.utils.Constants; |
| | |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.math.BigDecimal; |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | |
| | | } |
| | | if(data == null){ |
| | | data = new RegionEnergyListResponse(); |
| | | data.setSecondRegionDataList(new ArrayList<>()); |
| | | data.setRootValue("0"); |
| | | data.setSamePercent("0"); |
| | | data.setRingPercent("0"); |
| | |
| | | return data; |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢è½èç¨çµä¿¡æ¯ 1=仿¥ï¼2=æ¬æï¼3=æ¨æ¥ |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<RegionDataRankingDataResponse> getRegionDataRanking(Integer type){ |
| | | RegionDataRankingDataRequest request = new RegionDataRankingDataRequest(); |
| | | request.setMeterType(1); |
| | | if(Constants.equalsInteger(type,Constants.ONE)){ |
| | | request.setDate(DateUtil.getFomartDate(new Date(),"yyyy-MM-dd")); |
| | | request.setPeriodType("day"); |
| | | }else if(Constants.equalsInteger(type,Constants.TWO)){ |
| | | request.setDate(DateUtil.getFomartDate(new Date(),"yyyy-MM")); |
| | | request.setPeriodType("month"); |
| | | }else{ |
| | | request.setDate(DateUtil.getBeforDay(new Date(),1)); |
| | | request.setPeriodType("day"); |
| | | } |
| | | BaseResponse<List<RegionDataRankingDataResponse>> response = HKService.regionDataRanking(request); |
| | | if(response != null && StringUtils.equals(response.getCode(), HKConstants.RESPONSE_SUCCEE) && response.getData()!=null ){ |
| | | return response.getData(); |
| | | }else{ |
| | | return null; |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | } |
| | |
| | | TMSContants.TopStatusLevel tem = TMSContants.TopStatusLevel.ddsc; |
| | | if(i == 0){ |
| | | tem=TMSContants.TopStatusLevel.yrk; |
| | | } if(i == 1){ |
| | | } |
| | | if(i == 1){ |
| | | tem=TMSContants.TopStatusLevel.ydh; |
| | | } if(i == 2){ |
| | | } |
| | | if(i == 2){ |
| | | tem=TMSContants.TopStatusLevel.clysz; |
| | | } if(i == 4){ |
| | | } |
| | | if(i == 4){ |
| | | tem=TMSContants.TopStatusLevel.ckckz; |
| | | } if(i == 3){ |
| | | } |
| | | if(i == 3){ |
| | | tem=TMSContants.TopStatusLevel.ydpzz; |
| | | } if(i == 5){ |
| | | } |
| | | if(i == 5){ |
| | | tem=TMSContants.TopStatusLevel.ddsc; |
| | | } |
| | | t.setName(tem.getName()); |
| | |
| | | package com.doumee.service.business.third; |
| | | |
| | | import com.doumee.core.haikang.model.cars.response.CarsAlarmResultListResponse; |
| | | import com.doumee.core.haikang.model.param.respose.PageFireChannelInfoResponse; |
| | | import com.doumee.core.haikang.model.param.respose.PageRegionInfoResponse; |
| | | import com.doumee.core.haikang.model.param.respose.PageSensorStatusResponse; |
| | | import com.doumee.core.haikang.model.param.respose.RegionEnergyListResponse; |
| | | import com.doumee.core.haikang.model.param.request.RegionDataRankingTypeRequest; |
| | | import com.doumee.core.haikang.model.param.respose.*; |
| | | import com.doumee.dao.business.model.PlatformWarnEvent; |
| | | import com.doumee.dao.web.reqeust.CarsJobAndContractDTO; |
| | | import com.doumee.dao.web.response.platformReport.*; |
| | |
| | | List<GeneralVO> todayTotalInList(); |
| | | |
| | | List<CarsAlarmResultListResponse> carsEventList(); |
| | | |
| | | List<RegionDataRankingDataResponse> getRegionDataRanking(Integer type); |
| | | } |