示例#1
0
class Person(BaseJsonModel):
    name = StrDesc("name")
    age = IntDesc("age", hide=True)
    st = ObjectDesc("st", Student)
示例#2
0
class Son(BaseJsonModel):
    score = FloatDesc("score")
    age = IntDesc("age")
示例#3
0
class Student(BaseJsonModel):
    score = FloatDesc("score")
    age = IntDesc("age")
    s = ObjectDesc("s", Son)
示例#4
0
class Person(BaseJsonModel):
    name = StrDesc("name")
    age = IntDesc("age", hide=False)
    weight = IntDesc("weight")
    student = ObjectDesc("student", Student)