mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-02-02 04:33:10 +08:00
21 lines
413 B
Python
21 lines
413 B
Python
"""通知序列化器"""
|
|
|
|
from rest_framework import serializers
|
|
|
|
from .models import Notification
|
|
|
|
|
|
class NotificationSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Notification
|
|
fields = [
|
|
'id',
|
|
'category',
|
|
'title',
|
|
'message',
|
|
'level',
|
|
'is_read',
|
|
'created_at',
|
|
'read_at',
|
|
]
|