儀表板
文件庫
filestore
活動
搜尋
登入
pcalife
/
PAM
保誠-保戶業務員媒合平台
匯總
相關日誌
提交
目錄
檔案區
分支(forks)
比對
究查
|
歷程
|
原始
Merge branch 'Phase3' of https://192.168.0.10:8443/r/pcalife/PAM into Phase3
Mila
2022-01-13
75d1209791a26cc27d9ba489792788513bd70446
[pcalife/PAM.git]
/
pamapi
/
src
/
main
/
java
/
com
/
pollex
/
pam
/
repository
/
AppointmentClosedInfoRepository.java
1
2
3
4
5
6
7
8
9
10
11
package com.pollex.pam.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.pollex.pam.domain.AppointmentClosedInfo;
@Repository
public interface AppointmentClosedInfoRepository extends JpaRepository<AppointmentClosedInfo, Long>{
}