websoft9/appmanage/api/model/app.py

17 lines
282 B
Python
Raw Normal View History

2023-02-21 14:21:53 +08:00
from pydantic import BaseModel
class App(BaseModel):
2023-03-15 11:57:52 +08:00
app_id: str
2023-02-21 14:21:53 +08:00
name: str
2023-03-14 11:01:54 +08:00
customer_name: str
2023-03-08 15:00:02 +08:00
trade_mark: str
2023-02-21 14:21:53 +08:00
status_code: int
status: str
port: int
volume: str
url: str
2023-03-08 07:57:04 +08:00
image_url: str
2023-03-10 08:06:03 +08:00
admin_url: str
2023-02-22 15:11:25 +08:00
user_name: str
password: str