|
|
@@ -0,0 +1,16 @@
|
|
|
+package com.uas.platform.b2c.fa.payment.dao;
|
|
|
+
|
|
|
+import com.uas.platform.b2c.fa.payment.model.InstallmentDetail;
|
|
|
+import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
+import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
|
+import org.springframework.stereotype.Repository;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 分期明细dao
|
|
|
+ * @author wangyc
|
|
|
+ *
|
|
|
+ * @version 2017/9/7 9:12 wangyc
|
|
|
+ */
|
|
|
+@Repository
|
|
|
+public interface InstallmentDetailDao extends JpaSpecificationExecutor<InstallmentDetail>, JpaRepository<InstallmentDetail, Long>{
|
|
|
+}
|