mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-14 19:35:07 +08:00
10 lines
150 B
Python
10 lines
150 B
Python
from extensions.serializers import *
|
|
|
|
|
|
class NumberResponse(Serializer):
|
|
number = CharField(label='编号')
|
|
|
|
|
|
__all__ = [
|
|
'NumberResponse',
|
|
]
|