├── .idea
├── .gitignore
├── dataSources.xml
├── git_toolbox_prj.xml
├── modules.xml
├── php.xml
├── public.api.com.iml
├── sqldialects.xml
└── vcs.xml
├── README.md
├── admin
├── 404.php
├── ajax.php
├── footer.php
├── globals.php
├── header.php
├── index.php
└── login.php
├── assets
├── css
│ ├── codebase.min-5.4.css
│ └── dataTables.bootstrap5.min.css
├── fonts
│ ├── fontawesome
│ │ ├── fa-brands-400-1.eot
│ │ ├── fa-brands-400.eot
│ │ ├── fa-brands-400.svg
│ │ ├── fa-brands-400.ttf
│ │ ├── fa-brands-400.woff
│ │ ├── fa-brands-400.woff2
│ │ ├── fa-regular-400-1.eot
│ │ ├── fa-regular-400.eot
│ │ ├── fa-regular-400.svg
│ │ ├── fa-regular-400.ttf
│ │ ├── fa-regular-400.woff
│ │ ├── fa-regular-400.woff2
│ │ ├── fa-solid-900-1.eot
│ │ ├── fa-solid-900.eot
│ │ ├── fa-solid-900.svg
│ │ ├── fa-solid-900.ttf
│ │ ├── fa-solid-900.woff
│ │ └── fa-solid-900.woff2
│ ├── poppins
│ │ ├── poppins-v20-latin-500.woff2
│ │ ├── poppins-v20-latin-600.woff2
│ │ ├── poppins-v20-latin-700.woff2
│ │ └── poppins-v20-latin-regular.woff2
│ ├── simple-line-icons
│ │ ├── Simple-Line-Icons.eot
│ │ ├── Simple-Line-Icons.svg
│ │ ├── Simple-Line-Icons.ttf
│ │ ├── Simple-Line-Icons.woff
│ │ ├── Simple-Line-Icons.woff2
│ │ ├── ╕№╢р╘┤┬ы╡╪╓╖.txt.url
│ │ └── ╕№╢р╫╩╘┤╧┬╘╪.url
│ └── wenfont
│ │ └── HarmonyOS_Sans_SC_Medium.subset.woff2
├── img
│ ├── favicons
│ │ └── favicon.png
│ └── photo23@2x.jpg
└── js
│ ├── app.min.js
│ ├── bootstrap-notify.min.js
│ ├── chart.min.js
│ ├── codebase.app.min-5.4.js
│ ├── layer.js
│ ├── lib
│ └── base64.js
│ └── theme
│ └── default
│ ├── icon-ext.png
│ ├── icon.png
│ ├── layer.css
│ ├── loading-0.gif
│ ├── loading-1.gif
│ └── loading-2.gif
├── config
└── config.sql
├── donation.png
├── extend
├── adm
│ ├── admin
│ │ ├── api
│ │ │ └── admin.php
│ │ └── view
│ │ │ └── edit.php
│ ├── control
│ │ ├── api
│ │ │ ├── control.php
│ │ │ └── web.php
│ │ └── view
│ │ │ ├── list.php
│ │ │ ├── log.php
│ │ │ └── web.php
│ └── index.php
├── ajaxApi.php
├── api
│ └── test
│ │ └── index.php
└── docView.php
├── include
├── Route.class.php
├── common.php
├── config.php
└── db.class.php
├── index.php
├── install
├── cloudza_api.php
└── index.php
├── nginx.htaccess
└── robots.txt
/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # 默认忽略的文件
2 | /shelf/
3 | /workspace.xml
4 | # 基于编辑器的 HTTP 客户端请求
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/.idea/dataSources.xml:
--------------------------------------------------------------------------------
1 |
2 |