调用获取地址参数顺序错误

Signed-off-by: plimlips <156839224@qq.com>
This commit is contained in:
plimlips
2022-11-20 12:05:18 +00:00
committed by Gitee
parent dbf237a1f3
commit 19a6fc79a2

View File

@ -156,7 +156,7 @@ public class TradeOrderServiceImpl implements TradeOrderService {
* @return 收件地址
*/
private AddressRespDTO validateAddress(Long userId, Long addressId) {
AddressRespDTO address = addressApi.getAddress(userId, addressId);
AddressRespDTO address = addressApi.getAddress(addressId, userId);
if (Objects.isNull(address)) {
throw exception(ErrorCodeConstants.ORDER_CREATE_ADDRESS_NOT_FOUND);
}