|
|
@ -3,6 +3,7 @@ package com.psdc.controller.index; |
|
|
|
import com.psdc.core.domain.AjaxResult; |
|
|
|
import com.psdc.core.domain.AjaxResult; |
|
|
|
import com.psdc.service.IPsdcThermometerHtdataService; |
|
|
|
import com.psdc.service.IPsdcThermometerHtdataService; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.PathVariable; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestMethod; |
|
|
|
import org.springframework.web.bind.annotation.RequestMethod; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
@ -20,9 +21,9 @@ public class Index { |
|
|
|
return psdcThermometerHtdataService.selTodayThermometer(); |
|
|
|
return psdcThermometerHtdataService.selTodayThermometer(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@RequestMapping(value = "/8wd", method = RequestMethod.GET) |
|
|
|
@RequestMapping(value = "/8wd/{modelId}", method = RequestMethod.GET) |
|
|
|
public AjaxResult sel8WenDu() { |
|
|
|
public AjaxResult sel8WenDu(@PathVariable(value = "modelId", required = false) Integer modelId) { |
|
|
|
return psdcThermometerHtdataService.sel8WnDu(); |
|
|
|
return psdcThermometerHtdataService.sel8WnDu(modelId); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@RequestMapping(value = "/zdb", method = RequestMethod.GET) |
|
|
|
@RequestMapping(value = "/zdb", method = RequestMethod.GET) |
|
|
|