urban-investment-research/Mods/BasicInformation/Schemas.py

14 lines
336 B
Python

from pydantic import BaseModel
from typing import List
from Utils.SqlAlchemyUtils import QueryParam
class CompanyAllInfoQueryParams(BaseModel):
companyIndexMain: List[QueryParam]
companyBaseInfo: List[QueryParam]
companyPlusProperty: List[QueryParam]
companyControl: List[QueryParam]
page: int
page_size: int