| | |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | |
| | | @PutMapping(value = "/t-enterprise-user-application/export") |
| | | R<List<TEnterpriseUserApplication>> getTnterPrise(); |
| | | @GetMapping("/region/getRegionBuyCode/{code}") |
| | | R<Region> getRegionBuyCode(@PathVariable("code") String code); |
| | | |
| | | @GetMapping("/region/getTSystemConfiguration") |
| | | R<List<TSystemConfiguration>> getTSystemConfiguration(); |
| | | |
| | | @GetMapping(value = "/region/getCarDisCharge") |
| | | R<BigDecimal> getCarDisCharge(); |
| | | |
| | | @PostMapping(value = "/region/getGreenElectricity") |
| | | R<BigDecimal> getGreenElectricity(); |
| | | |
| | | @PostMapping(value = "/region/carportData") |
| | | R carportData(String parkingPlace); |
| | | |
| | | @GetMapping(value = "/region/getCarportData") |
| | | R<HashMap<String, Object>> getCarportData(); |
| | | |
| | | @GetMapping(value = "/region/reset") |
| | | R reset(@RequestParam("electricity") String electricity); |
| | | |
| | | } |