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

14 lines
336 B
Python
Raw Normal View History

2023-03-22 17:06:48 +08:00
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