12 lines
363 B
Python
12 lines
363 B
Python
from django.shortcuts import render
|
|
from rest_framework.generics import CreateAPIView, GenericAPIView
|
|
from rest_framework.viewsets import GenericViewSet, ModelViewSet
|
|
|
|
from apps.system.mixins import CreateUpdateModelAMixin, OptimizationMixin
|
|
|
|
# Create your views here.
|
|
class WpmPickView(CreateUpdateModelAMixin, CreateAPIView):
|
|
"""
|
|
领料
|
|
"""
|
|
pass |