backend/production/serializers.py
2025-03-23 21:24:08 +10:00

8 lines
210 B
Python

from rest_framework import serializers
from .models import ProductionPlan
class ProductionPlanSerializer(serializers.ModelSerializer):
class Meta:
model = ProductionPlan
fields = '__all__'