From 021c06b383333a944496365e3c491c1287eb625a Mon Sep 17 00:00:00 2001
From: charlie <charlie@lvguanqingdeMacBook-Pro.local>
Date: 星期四, 20 一月 2022 10:17:19 +0800
Subject: [PATCH] Merge branch 'Phase3' of ssh://192.168.0.10:29418/pcalife/PAM into Phase3

---
 pamapi/src/main/java/com/pollex/pam/service/CustomerService.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pamapi/src/main/java/com/pollex/pam/service/CustomerService.java b/pamapi/src/main/java/com/pollex/pam/service/CustomerService.java
index c944a44..79a086d 100644
--- a/pamapi/src/main/java/com/pollex/pam/service/CustomerService.java
+++ b/pamapi/src/main/java/com/pollex/pam/service/CustomerService.java
@@ -64,7 +64,7 @@
 	}
 
     public void updateLoggedCustomer(CustomerDTO customerDTO) {
-        Long customerId = SecurityUtils.getCustomerId();
+        Long customerId = SecurityUtils.getCustomerDBId();
         Customer customer = customerRepository.findById(customerId)
             .orElseThrow(() -> new UsernameNotFoundException("customerId which is from token is not found in customer db table, customer id = " + customerId));
 
@@ -75,7 +75,7 @@
     }
 
     public CustomerDTO getLoggedCustomerDTO() {
-        Long customerId = SecurityUtils.getCustomerId();
+        Long customerId = SecurityUtils.getCustomerDBId();
         Customer customer = customerRepository.findById(customerId)
             .orElseThrow(() -> new UsernameNotFoundException("customerId which is from token is not found in customer db table, customer id = " + customerId));
 

--
Gitblit v1.8.0