| | |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @author HJL |
| | | * @since 2024.05.29 |
| | |
| | | R<UserDto> getUser(@RequestParam("userId") Integer userId); |
| | | @PostMapping(value = "/user/getCityCode") |
| | | R<AddressDto> getCityCode(@RequestParam("addressId") Integer addressId); |
| | | @PostMapping(value = "/user/getServePrice") |
| | | R<BigDecimal> getServePrice(@RequestParam("serveId") Integer serveId, @RequestParam("cityCode") String cityCode); |
| | | |
| | | |
| | | } |