urls.py 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. """AnsjerUIDManage URL Configuration
  2. The `urlpatterns` list routes URLs to views. For more information please see:
  3. https://docs.djangoproject.com/en/3.0/topics/http/urls/
  4. Examples:
  5. Function views
  6. 1. Add an import: from my_app import views
  7. 2. Add a URL to urlpatterns: path('', views.home, name='home')
  8. Class-based views
  9. 1. Add an import: from other_app.views import Home
  10. 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
  11. Including another URLconf
  12. 1. Import the include() function: from django.urls import include, path
  13. 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
  14. """
  15. from django.contrib import admin
  16. from django.urls import path, re_path
  17. from Controller import UserController, FileController, UIDController, LogController, SalesController, \
  18. OrderTaskController, HistoryUIDController, SerialNumberController, AlexaController
  19. urlpatterns = [
  20. path('admin/', admin.site.urls),
  21. re_path('user/(?P<operation>.*)', UserController.UserView.as_view()),
  22. re_path('uid/(?P<operation>.*)', UIDController.UIDView.as_view()),
  23. re_path('serialNumber/(?P<operation>.*)', SerialNumberController.SerialNumberView.as_view()),
  24. re_path('history/(?P<operation>.*)', HistoryUIDController.HistoryUIDView.as_view()),
  25. re_path('log/(?P<operation>.*)', LogController.LogView.as_view()),
  26. re_path('orderTask/(?P<operation>.*)', OrderTaskController.OrderTaskView.as_view()),
  27. path('downloadUID', FileController.DownloadUIDFileView.as_view()),
  28. path('downloadSerialNumber', FileController.DownloadSerialNumberFileView.as_view()),
  29. path('upload', FileController.UploadUIDFileView.as_view()),
  30. path('uploadSerialNumber', FileController.UploadSerialNumberFileView.as_view()),
  31. # path('download', FileController.DownloadUIDFileView.as_view()),
  32. path('sales', SalesController.SalesView.as_view()),
  33. path('device/online', SalesController.DeviceOnlineView.as_view()),
  34. re_path('serialNumber/(?P<operation>.*)', SerialNumberController.SerialNumberView.as_view()),
  35. path('alexa/command', AlexaController.PushCommandView.as_view()),
  36. ]