| | |
| | | package com.ycl.smoke.remote.service; |
| | | |
| | | import com.ycl.smoke.entity.OdsDetectorDaily; |
| | | import com.ycl.smoke.entity.OdsTenMinData; |
| | | import com.ycl.smoke.remote.dto.*; |
| | | import com.ycl.smoke.dto.*; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | @RequestHeader("Auth") String token); |
| | | |
| | | @PostMapping(value = "/admin/listDataIntime") |
| | | SmokeResultResponseDto<DetectorDailyResponseDto> listDataIntime(@RequestBody DetectorDailyParamDto paramDto, |
| | | SmokeResultResponseDto<DataIntimeResponseDto> listDataIntime(@RequestBody DataIntimeParamDto paramDto, |
| | | @RequestHeader("Auth") String token); |
| | | |
| | | @PostMapping(value = "/admin/listLocale") |
| | | SmokeResultResponseDto<DetectorDailyResponseDto> listLocale(@RequestBody DetectorDailyParamDto paramDto, |
| | | @RequestHeader("Auth") String token); |
| | | @PostMapping(value = "/admin/listLocale") |
| | | SmokeResultResponseDto<LocaleResponseDto> listLocale(@RequestBody LocaleParamDto paramDto, |
| | | @RequestHeader("Auth") String token); |
| | | |
| | | @PostMapping(value = "/admin/queryCustomer") |
| | | SmokeResultResponseDto<DetectorDailyResponseDto> queryCustomer(@RequestBody DetectorDailyParamDto paramDto, |
| | | @RequestHeader("Auth") String token); |
| | | @PostMapping(value = "/admin/queryCustomer") |
| | | SmokeResultResponseDto<CustomerResponseDto> queryCustomer(@RequestBody CustomerParamDto paramDto, |
| | | @RequestHeader("Auth") String token); |
| | | |
| | | |
| | | |
| | | @PostMapping(value = "/admin/listAlarmRecord") |
| | | SmokeResultResponseDto<AlarmMsgResponseDto> getListAlarmRecord(@RequestBody AlarmMsgParamDto paramDto, |
| | | SmokeResultResponseDto<AlarmRecordResponseDto> getListAlarmRecord(@RequestBody AlarmMsgParamDto paramDto, |
| | | @RequestHeader("Auth") String token); |
| | | |
| | | |
| | | |
| | | @PostMapping(value = "/admin/listCurAlarm") |
| | | SmokeResultResponseDto<AlarmMsgResponseDto> getListCurAlarm(@RequestBody AlarmMsgParamDto paramDto, |
| | | SmokeResultResponseDto<CurAlarmResponseDto> getListCurAlarm(@RequestBody CurAlarmParamDto paramDto, |
| | | @RequestHeader("Auth") String token); |
| | | |
| | | } |