table_class

This commit is contained in:
jze9
2025-04-10 23:06:41 +05:00
parent 788bb5b92c
commit 822007f1d3
5 changed files with 214 additions and 12 deletions

View File

@@ -72,4 +72,11 @@ async def insert_table(data:dict):
@router.post("select_rows_with_filter")
async def select_rows_with_filter(value:str):
"""Выборка с фильтром"""
return await Request.select_rows_with_filter(value=value)
return await Request.select_rows_with_filter(value=value)
@router.get("get_table_name")
async def get_table_name(data:dict):
return await {
"name":"Сollection_form_opk",
"name_bd":"Сollection_form_opk"
}