You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
462 B
15 lines
462 B
# Create your views here.
|
|
from rest_framework.decorators import api_view
|
|
|
|
from myapp.handler import APIResponse
|
|
from myapp.models import OpLog
|
|
from myapp.serializers import OpLogSerializer
|
|
|
|
|
|
@api_view(['GET'])
|
|
def list_api(request):
|
|
if request.method == 'GET':
|
|
opLogs = OpLog.objects.all().order_by('-re_time')[:100]
|
|
serializer = OpLogSerializer(opLogs, many=True)
|
|
return APIResponse(code=0, msg='查询成功', data=serializer.data)
|