From f2c1313c7637c8bb2ab8b3583adbd327855cdd1d Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期一, 10 一月 2022 08:32:16 +0800 Subject: [PATCH] Merge branch 'Phase3' of https://dev.pollex.com.tw:8443/r/pcalife/PAM into Phase3 --- pamapi/src/main/java/com/pollex/pam/repository/AppointmentCustomerViewRepository.java | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/pamapi/src/main/java/com/pollex/pam/repository/AppointmentCustomerViewRepository.java b/pamapi/src/main/java/com/pollex/pam/repository/AppointmentCustomerViewRepository.java index 0e39bd0..b3499c6 100644 --- a/pamapi/src/main/java/com/pollex/pam/repository/AppointmentCustomerViewRepository.java +++ b/pamapi/src/main/java/com/pollex/pam/repository/AppointmentCustomerViewRepository.java @@ -9,7 +9,6 @@ @Repository public interface AppointmentCustomerViewRepository extends JpaRepository<AppointmentCustomerView, Long>{ - List<AppointmentCustomerView> findByAgentNo(String agentNo); - + List<AppointmentCustomerView> findByAgentNoAndCustomerId(String agentNo, Long customerId); } -- Gitblit v1.8.0