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.
38 lines
1.9 KiB
38 lines
1.9 KiB
# -*- coding:utf-8 -*-
|
|
"""
|
|
@Created on : 2023/6/30 9:40
|
|
@Author: hxl
|
|
@Des:
|
|
"""
|
|
from fastapi import APIRouter
|
|
|
|
from endpoints import archive, drug as end_drug, warning, report, secure
|
|
from . import user, role, session, cabinet, upload, dictionary, home, environment, department, drug, msds, fluid, warehouse, log, hikvision, template, stock,home_index,tvshow
|
|
|
|
router = APIRouter(prefix='/api/rms/web')
|
|
|
|
router.include_router(user.router, tags=['中控/用户'])
|
|
router.include_router(role.router, tags=['中控/角色'])
|
|
router.include_router(session.router, tags=['中控/登录'])
|
|
router.include_router(department.router, tags=['中控/科室'])
|
|
router.include_router(cabinet.router, tags=['中控/柜体'])
|
|
router.include_router(archive.router, tags=['中控/大类'])
|
|
router.include_router(template.router, tags=["中控/模板"])
|
|
router.include_router(fluid.router, tags=['中控/配液'])
|
|
router.include_router(drug.router, tags=['中控/药剂'])
|
|
router.include_router(end_drug.router, tags=['中控/药剂'])
|
|
router.include_router(msds.router, tags=['中控/msds'])
|
|
router.include_router(home.router, tags=['中控/首页'])
|
|
router.include_router(upload.router, tags=['中控/上传'])
|
|
router.include_router(environment.router, tags=['中控/环境'])
|
|
router.include_router(warning.router, tags=['中控/报警'])
|
|
router.include_router(warehouse.router, tags=['中控/仓库'])
|
|
router.include_router(log.router, tags=['中控/日志'])
|
|
router.include_router(report.router, tags=['中控/报表统计'])
|
|
router.include_router(dictionary.router, tags=['中控/试剂类别'])
|
|
router.include_router(secure.router, tags=['中控/账号安全'])
|
|
router.include_router(hikvision.router, tags=['中控/视频监控'])
|
|
router.include_router(stock.router, tags=['中控/库存盘点'])
|
|
router.include_router(tvshow.router, tags=['中控/大屏'])
|
|
router.include_router(home_index.router, tags=['中控/统计'])
|