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.
12 lines
272 B
12 lines
272 B
|
10 months ago
|
# Created by Sherlock on 2025/2/21 17:49
|
||
|
|
from rest_framework import serializers
|
||
|
|
from .models import Connection
|
||
|
|
|
||
|
|
class ConnectionSerializer(serializers.ModelSerializer):
|
||
|
|
"""
|
||
|
|
数据连接
|
||
|
|
"""
|
||
|
|
class Meta:
|
||
|
|
model = Connection
|
||
|
|
fields = "__all__"
|