| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- # -*- coding: utf-8 -*-
- # @Author : YY
- from ruoyi_common.ruoyi.config import CONFIG_CACHE
-
- class RuoYiConfig:
-
- profile = CONFIG_CACHE.get("ruoyi.profile", "dev")
-
- @property
- def upload_path(self) -> str:
- """
- 获取上传路径
- Returns:
- str: 上传路径
- """
- return f"uploads/{self.profile}/upload"
-
- @property
- def download_path(self) -> str:
- """
- 获取下载路径
- Returns:
- str: 下载路径
- """
- return f"uploads/{self.profile}/download/"
-
- @property
- def avatar_path(self) -> str:
- """
- 获取头像路径
- Returns:
- str: 头像路径
- """
- return f"uploads/{self.profile}/avatar"
-
- @property
- def import_path(self) -> str:
- """
- 获取导入路径
- Returns:
- str: 导入路径
- """
- return f"uploads/{self.profile}/import"
|