保定ai问答主体项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
411 B

from pydantic import BaseModel
class ChatIn(BaseModel):
language: str
message: str
sign: str
timestamp: int
user_id: int
class AllScenicFlowRequest(BaseModel):
timestamp: int
sign: str
class ScenicDetailRequest(BaseModel):
id: int
timestamp: int
sign: str
class ScenicParkingRequest(BaseModel):
id: int
distance: int = 1000
timestamp: int
sign: str