支付

创建payment子应用

总路由

# pay
path('', include('apps.payment.urls')),

子路由

from django.conf.urls import url
from . import views
urlpatterns = [

]