mini-rbac/backend/dbhelper/menu.py

8 lines
172 B
Python
Raw Normal View History

2022-09-12 07:11:12 +00:00
from models import MenuModel
from schemas.menu import MenuIn
async def insert_menu(menu: MenuIn):
"""新增菜单"""
return await MenuModel.create(**menu.dict())