提交租赁订单接口
This commit is contained in:
@ -0,0 +1,13 @@
|
|||||||
|
package com.sczx.pay.controller;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
@Api(value = "支付宝租赁订单支付接口", tags = "支付宝租赁订单支付接口")
|
||||||
|
@Slf4j
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/alipay/rent")
|
||||||
|
public class AlipayRentController {
|
||||||
|
}
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
package com.sczx.pay.controller;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
@Api(value = "支付宝租赁订单回调接口", tags = "支付宝租赁订单回调接口")
|
||||||
|
@Slf4j
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/alipay/rent/notify")
|
||||||
|
public class AlipayRentNotifyController {
|
||||||
|
}
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
package com.sczx.pay.service;
|
||||||
|
|
||||||
|
public interface AlipayRentService {
|
||||||
|
}
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
package com.sczx.pay.service.impl;
|
||||||
|
|
||||||
|
import com.sczx.pay.service.AlipayRentService;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
@Service
|
||||||
|
public class AlipayRentServiceImpl implements AlipayRentService {
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user