...
|
...
|
@@ -9,6 +9,7 @@ import com.yohoufo.order.model.request.PaymentRequest; |
|
|
import com.yohoufo.order.service.IPaymentService;
|
|
|
import com.yohoufo.order.utils.LoggerUtils;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
...
|
...
|
@@ -18,7 +19,7 @@ import org.springframework.stereotype.Service; |
|
|
@Service
|
|
|
public class PayRefundService {
|
|
|
|
|
|
private static final Logger logger = LoggerUtils.getPayConfirmLogger();
|
|
|
private static final Logger logger = LoggerFactory.getLogger(PayRefundService.class);
|
|
|
|
|
|
@Autowired
|
|
|
private IPaymentService paymentService;
|
...
|
...
|
|