8 lines
210 B
Python
8 lines
210 B
Python
|
|
from rest_framework import serializers
|
||
|
|
from .models import ProductionPlan
|
||
|
|
|
||
|
|
class ProductionPlanSerializer(serializers.ModelSerializer):
|
||
|
|
class Meta:
|
||
|
|
model = ProductionPlan
|
||
|
|
fields = '__all__'
|