You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
2.1 KiB

# -*- coding:utf-8 -*-
"""
@Created on : 2023/7/21 9:40
@Author: hxl
@Des:柜体接口
"""
from fastapi import APIRouter
from endpoints import balance, template, upload, log, warning, secure, hikvision, drawer, board, archive, update_version, outside_reader
from endpoints.cab import session, user, role, terminal, warehouse, drug, face, cabinet, taboo_relation, \
plane, today, video, report, report_cab
router = APIRouter(prefix='/api/rms/cab')
router.include_router(archive.router, tags=["柜体/大类"])
router.include_router(session.router, tags=["用户登录"])
router.include_router(user.router, tags=["用户管理"])
router.include_router(role.router, tags=["角色管理"])
router.include_router(terminal.router, tags=["终端管理"])
router.include_router(template.router, tags=["药剂模板"])
router.include_router(drug.router, tags=["试剂管理"])
router.include_router(drug.return_router, tags=["试剂管理(快速归还)"])
router.include_router(warehouse.router, tags=["入库绑定"])
router.include_router(upload.router, tags=["上传模版"])
router.include_router(face.router, tags=["人脸"])
router.include_router(cabinet.router, tags=["柜体管理"])
router.include_router(drawer.router, tags=["抽屉管理"])
router.include_router(drawer.return_router, tags=["抽屉管理(快速归还)"])
router.include_router(board.router, tags=["定位板规格管理"])
router.include_router(taboo_relation.router, tags=["药剂禁忌"])
router.include_router(plane.router, tags=['下位机接口'])
router.include_router(today.router, tags=['首页统计'])
router.include_router(hikvision.router, tags=['监控配置'])
router.include_router(log.router, tags=['平台日志'])
router.include_router(secure.router, tags=['账号安全'])
router.include_router(report.router, tags=['报表管理'])
router.include_router(video.router, tags=['视频监控'])
router.include_router(warning.router, tags=['预警通知'])
router.include_router(balance.router, tags=['天平称重'])
router.include_router(update_version.router, tags=['更新版本'])
router.include_router(outside_reader.router, tags=['外部串口读卡器'])