File size: 314 Bytes
ed5ec6a 3f47633 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from typing import ClassVar
from pydantic import BaseModel
from ocr.api.report.model import ReportModel
class Paging(BaseModel):
pageSize: int
pageIndex: int
totalCount: int
class ReportModelShort(ReportModel):
report: ClassVar[str]
changes: ClassVar[str]
originalText: ClassVar[str]
|