Browse Source

分期支付--创建分期支付Service

wangyc 8 years ago
parent
commit
a8af217ed6

+ 9 - 0
src/main/java/com/uas/platform/b2c/fa/payment/service/InstallmentService.java

@@ -0,0 +1,9 @@
+package com.uas.platform.b2c.fa.payment.service;
+
+/**
+ * Created by wangyc on 2017/9/7.
+ *
+ * @version 2017/9/7 9:07 wangyc
+ */
+public interface InstallmentService {
+}

+ 13 - 0
src/main/java/com/uas/platform/b2c/fa/payment/service/impl/InstallmentServiceImpl.java

@@ -0,0 +1,13 @@
+package com.uas.platform.b2c.fa.payment.service.impl;
+
+import com.uas.platform.b2c.fa.payment.service.InstallmentService;
+import org.springframework.stereotype.Service;
+
+/**
+ * Created by wangyc on 2017/9/7.
+ *
+ * @version 2017/9/7 9:07 wangyc
+ */
+@Service
+public class InstallmentServiceImpl implements InstallmentService{
+}