儀表板
文件庫
filestore
活動
搜尋
登入
pcalife
/
PAM
保誠-保戶業務員媒合平台
匯總
相關日誌
提交
目錄
檔案區
分支(forks)
比對
究查
|
歷程
|
原始
[ADD] 預約單結案API
Jack
2022-01-13
03e918bf6861d9b62b2ad0c5d043086969e0d9f6
[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>{
}