bank and account service is updated

This commit is contained in:
2024-12-03 15:31:52 +03:00
parent ac5a71f1a8
commit c2dd464fc6
7 changed files with 27 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ class Events(CrudCollection):
__tablename__ = "events"
__exclude__fields__ = []
event_type: Mapped[str] = mapped_column(String, nullable=False, comment="default")
event_type: Mapped[str] = mapped_column(String, nullable=False, comment="Event Type")
function_code: Mapped[str] = mapped_column(
String, nullable=False, comment="function code"
)