| 143 | |
| 144 | |
| 145 | class TableSchema: |
| 146 | def __init__(self, attr1, attr2=None): |
| 147 | self.tableName = attr1 |
| 148 | self.tableComment = attr2 if attr2 is None or isinstance(attr2, str) else attr2.decode("utf-8") |
| 149 | |
| 150 | tableName: str |
| 151 | tableComment: str |
| 152 | |
| 153 | |
| 154 | class TableSchemaResponse(BaseModel): |