├─.vscode
├─bat
├─dist
├─html
├─public
├─src
│ ├─api
│ │ ├─article
│ │ ├─business
│ │ ├─monitor
│ │ ├─system
│ │ │ └─dict
│ │ └─tool
│ ├─assets
│ │ ├─401_images
│ │ ├─404_images
│ │ ├─iconfont
│ │ ├─icons
│ │ │ └─svg
│ │ ├─images
│ │ ├─logo
│ │ └─styles
│ ├─components
│ │ ├─Breadcrumb
│ │ ├─Crontab
│ │ ├─DictTag
│ │ ├─Echarts
│ │ ├─Editor
│ │ ├─FileUpload
│ │ ├─Hamburger
│ │ ├─HeaderSearch
│ │ ├─IconSelect
│ │ ├─iFrame
│ │ ├─ImagePreview
│ │ ├─ImageUpload
│ │ ├─LangSelect
│ │ ├─Notice
│ │ ├─Pagination
│ │ ├─ParentView
│ │ ├─RightToolbar
│ │ ├─Screenfull
│ │ ├─SizeSelect
│ │ ├─SvgIcon
│ │ ├─TopNav
│ │ ├─vue3-cron-core
│ │ └─Zr
│ │ ├─Doc
│ │ └─Git
│ ├─directive
│ │ ├─module
│ │ └─permission
│ ├─i18n
│ │ ├─lang
│ │ └─pages
│ │ ├─login
│ │ └─menu
│ ├─layout
│ │ └─components
│ │ ├─IframeToggle
│ │ ├─InnerLink
│ │ ├─Settings
│ │ ├─Sidebar
│ │ └─TagsView
│ ├─plugins
│ ├─router
│ ├─store
│ │ └─modules
│ ├─utils
│ └─views
│ ├─business
│ ├─components
│ │ ├─CommonMenu
│ │ └─icons
│ ├─dashboard
│ ├─error
│ ├─monitor
│ │ ├─cache
│ │ ├─job
│ │ ├─logininfor
│ │ ├─operlog
│ │ └─server
│ ├─redirect
│ ├─system
│ │ ├─article
│ │ ├─commonLang
│ │ ├─config
│ │ ├─dept
│ │ ├─dict
│ │ ├─menu
│ │ ├─notice
│ │ ├─oauth
│ │ ├─post
│ │ ├─role
│ │ ├─roleusers
│ │ └─user
│ │ └─profile
│ └─tool
│ ├─build
│ ├─email
│ ├─file
│ ├─gen
│ └─swagger
└─vite
└─plugins
├─La.Infra ->[基础层类库]:数据类型,I/O以及其他类库;
├─La.Common ->[公共层类库]:包括数据、正则、字符串等的Helper;
├─La.Service ->[服务层类库]:提供WebApi接口调用;
├─La.Repository ->[仓库层类库]:方便提供有执行存储过程的操作;
├─La.Model ->[实体层类库]:提供项目中的数据库表、数据传输对象;
├─La.WebApi ->[webapi接口]:为Vue版或其他三方系统提供接口服务。
├─La.Tasks ->[定时任务类库]:提供项目定时任务实现功能;
├─La.CodeGenerator ->[代码生成功能]:包含模板、方法、代码、下载。
├─La.Vue ->[前端UI]:vue3.0版本UI层。