mirror of
https://github.com/hequan2017/seal.git
synced 2026-02-03 10:13:27 +08:00
9 lines
184 B
Python
9 lines
184 B
Python
from rest_framework import serializers
|
|
from assets.models import Ecs
|
|
|
|
|
|
class EcsSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Ecs
|
|
fields = '__all__'
|