event&eventaction

This commit is contained in:
2023-10-29 17:16:50 +09:00
parent ead6658455
commit 9cd4c8a5ab
4 changed files with 70 additions and 3 deletions

View File

@@ -122,5 +122,16 @@ class Domain(Base):
kintonepwd: str
active:bool
class Config:
orm_mode = True
class Event(Base):
id: int
category: str
type: str
eventid: str
function: str
mobile: bool
class Config:
orm_mode = True