独角鲸同步合作方公司数据项目
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

# 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__"