From bc4cd54c0120ea49ecd6cb95fae00fa6da001324 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期四, 16 十二月 2021 14:53:17 +0800 Subject: [PATCH] fixed: [顧問-我的已聯繫預約單列表] search 功能無法使用的錯誤 --- 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