8.3
luodangjia
2024-08-03 67157345fe1878681e39ec186ef37ff6b3b5c1fc
ruoyi-api/ruoyi-api-user/src/main/java/com/ruoyi/user/api/feignClient/UserClient.java
@@ -10,6 +10,8 @@
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import java.math.BigDecimal;
/**
 * @author HJL
 * @since 2024.05.29
@@ -20,6 +22,8 @@
    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);
}