websoft9/appmanage/api/model/app.py

16 lines
255 B
Python
Raw Normal View History

2023-02-21 14:21:53 +08:00
from pydantic import BaseModel
class App(BaseModel):
id: str
2023-02-21 14:21:53 +08:00
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