HimoolERP/apps/goods/schemas.py

11 lines
150 B
Python
Raw Normal View History

2021-11-04 23:49:56 +08:00
from extensions.serializers import *
2021-11-09 23:17:54 +08:00
class NumberResponse(Serializer):
number = CharField(label='编号')
2021-11-04 23:49:56 +08:00
2021-11-09 23:17:54 +08:00
__all__ = [
'NumberResponse',
2021-11-04 23:49:56 +08:00
]