├── src
├── main
│ ├── resources
│ │ ├── static
│ │ │ ├── plugin
│ │ │ │ ├── layui
│ │ │ │ │ ├── module
│ │ │ │ │ │ ├── xm-select
│ │ │ │ │ │ │ ├── static
│ │ │ │ │ │ │ │ ├── element-icons.535877f.woff
│ │ │ │ │ │ │ │ ├── wx.b556b2e.jpg
│ │ │ │ │ │ │ │ └── element-icons.732389d.ttf
│ │ │ │ │ │ │ └── index.html
│ │ │ │ │ │ ├── dtree
│ │ │ │ │ │ │ └── font
│ │ │ │ │ │ │ │ ├── dtreefont.eot
│ │ │ │ │ │ │ │ ├── dtreefont.ttf
│ │ │ │ │ │ │ │ └── dtreefont.woff
│ │ │ │ │ │ └── treetable-lay
│ │ │ │ │ │ │ └── treetable.css
│ │ │ │ │ ├── font
│ │ │ │ │ │ ├── iconfont.eot
│ │ │ │ │ │ ├── iconfont.ttf
│ │ │ │ │ │ ├── iconfont.woff
│ │ │ │ │ │ └── iconfont.woff2
│ │ │ │ │ └── modules
│ │ │ │ │ │ ├── layui.all.js
│ │ │ │ │ │ ├── mobile.js
│ │ │ │ │ │ └── all.js
│ │ │ │ └── tinymce
│ │ │ │ │ ├── langs
│ │ │ │ │ └── README.md
│ │ │ │ │ ├── skins
│ │ │ │ │ ├── ui
│ │ │ │ │ │ ├── oxide
│ │ │ │ │ │ │ └── skin.shadowdom.min.css
│ │ │ │ │ │ ├── oxide-dark
│ │ │ │ │ │ │ └── skin.shadowdom.min.css
│ │ │ │ │ │ ├── tinymce-5
│ │ │ │ │ │ │ └── skin.shadowdom.min.css
│ │ │ │ │ │ └── tinymce-5-dark
│ │ │ │ │ │ │ └── skin.shadowdom.min.css
│ │ │ │ │ └── content
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ └── content.min.css
│ │ │ │ │ │ ├── tinymce-5
│ │ │ │ │ │ └── content.min.css
│ │ │ │ │ │ ├── writer
│ │ │ │ │ │ └── content.min.css
│ │ │ │ │ │ ├── dark
│ │ │ │ │ │ └── content.min.css
│ │ │ │ │ │ ├── tinymce-5-dark
│ │ │ │ │ │ └── content.min.css
│ │ │ │ │ │ └── document
│ │ │ │ │ │ └── content.min.css
│ │ │ │ │ ├── plugins
│ │ │ │ │ ├── code
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ └── visualblocks
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ └── license.txt
│ │ │ ├── common
│ │ │ │ ├── css
│ │ │ │ │ ├── skin-black.css
│ │ │ │ │ ├── skin-blue.css
│ │ │ │ │ └── skin-red.css
│ │ │ │ ├── font
│ │ │ │ │ ├── Lenovo-R.ttf
│ │ │ │ │ ├── iconfont.ttf
│ │ │ │ │ └── iconfont.css
│ │ │ │ └── image
│ │ │ │ │ ├── charon.png
│ │ │ │ │ ├── logo-pc.png
│ │ │ │ │ ├── logo-code.png
│ │ │ │ │ ├── logo-pwd.png
│ │ │ │ │ └── login-background.png
│ │ │ ├── module
│ │ │ │ └── screen
│ │ │ │ │ ├── images
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ ├── line.png
│ │ │ │ │ └── head_bg.png
│ │ │ │ │ ├── picture
│ │ │ │ │ ├── jt.png
│ │ │ │ │ ├── lbx.png
│ │ │ │ │ ├── map.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ └── weather.png
│ │ │ │ │ └── font
│ │ │ │ │ └── DS-DIGIT.TTF
│ │ │ └── error
│ │ │ │ └── error.css
│ │ ├── config
│ │ │ └── cron.setting
│ │ ├── tomcat_https.cer
│ │ ├── META-INF
│ │ │ └── spring
│ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ ├── tomcat_https.keystore
│ │ ├── i18n
│ │ │ ├── messages.properties
│ │ │ ├── messages_en_US.properties
│ │ │ └── messages_zh_CN.properties
│ │ ├── application-dev.yml
│ │ ├── mapper
│ │ │ ├── system
│ │ │ │ ├── IniMapper.xml
│ │ │ │ ├── ButtonMapper.xml
│ │ │ │ ├── UserGroupMapper.xml
│ │ │ │ ├── RolePermissionMapper.xml
│ │ │ │ ├── UserThirdpartyMapper.xml
│ │ │ │ ├── UserUserGroupMapper.xml
│ │ │ │ ├── RoleMapper.xml
│ │ │ │ ├── UserOrganizationMapper.xml
│ │ │ │ ├── UserRoleMapper.xml
│ │ │ │ ├── ThirdpartyAppMapper.xml
│ │ │ │ └── OperateLogMapper.xml
│ │ │ ├── operation
│ │ │ │ ├── DictMapper.xml
│ │ │ │ ├── DataBakMapper.xml
│ │ │ │ ├── DictAttrMapper.xml
│ │ │ │ └── LoginRecordMapper.xml
│ │ │ ├── archive
│ │ │ │ └── AttachmentMapper.xml
│ │ │ └── other
│ │ │ │ ├── BillTypeMapper.xml
│ │ │ │ └── NotepadMapper.xml
│ │ ├── templates
│ │ │ ├── module
│ │ │ │ ├── common
│ │ │ │ │ ├── previewFile.ftl
│ │ │ │ │ └── importResult.ftl
│ │ │ │ ├── system
│ │ │ │ │ ├── operateLogList.ftl
│ │ │ │ │ ├── manageBindAccount.ftl
│ │ │ │ │ ├── menuList.ftl
│ │ │ │ │ ├── userGroupBaseInfo.ftl
│ │ │ │ │ └── roleDetail.ftl
│ │ │ │ ├── other
│ │ │ │ │ ├── billTypeList.ftl
│ │ │ │ │ └── billTypeDetail.ftl
│ │ │ │ └── operation
│ │ │ │ │ └── loginSetting.ftl
│ │ │ ├── login.ftl
│ │ │ └── error
│ │ │ │ ├── 500.ftl
│ │ │ │ └── 404.ftl
│ │ ├── application-pro.yml
│ │ └── ftl
│ │ │ ├── priv_code.ftl.ftl
│ │ │ ├── PrivCode.java.ftl
│ │ │ ├── freemarker_implicit.ftl.ftl
│ │ │ ├── detail.ftl.ftl
│ │ │ └── service.java.ftl
│ └── java
│ │ └── com
│ │ └── qcz
│ │ └── qmplatform
│ │ ├── common
│ │ ├── validation
│ │ │ ├── groups
│ │ │ │ ├── Save.java
│ │ │ │ ├── Delete.java
│ │ │ │ ├── Get.java
│ │ │ │ ├── Insert.java
│ │ │ │ └── Update.java
│ │ │ ├── IpAddressValidator.java
│ │ │ ├── PhoneValidator.java
│ │ │ ├── Phone.java
│ │ │ ├── IpAddress.java
│ │ │ └── EnumValueValidator.java
│ │ ├── utils
│ │ │ ├── SmsUtils.java
│ │ │ ├── RegexPools.java
│ │ │ ├── MailUtils.java
│ │ │ ├── IpUtils.java
│ │ │ ├── CronUtils.java
│ │ │ ├── JSONUtils.java
│ │ │ ├── ClassUtils.java
│ │ │ ├── StringUtils.java
│ │ │ ├── IdUtils.java
│ │ │ ├── CollectionUtils.java
│ │ │ ├── CloseUtils.java
│ │ │ ├── IniFileUtils.java
│ │ │ ├── SpringContextUtils.java
│ │ │ ├── RandomUtils.java
│ │ │ └── DateUtils.java
│ │ ├── bean
│ │ │ ├── Observable.java
│ │ │ ├── Observed.java
│ │ │ ├── DBProperties.java
│ │ │ ├── ExcelRow.java
│ │ │ ├── PageResult.java
│ │ │ ├── ImportFailReason.java
│ │ │ ├── ImportResult.java
│ │ │ ├── PageRequest.java
│ │ │ └── Tree.java
│ │ ├── constant
│ │ │ ├── GroupDefine.java
│ │ │ ├── Constant.java
│ │ │ └── ResponseCode.java
│ │ ├── exception
│ │ │ ├── CommonException.java
│ │ │ ├── BusinessException.java
│ │ │ └── NotLoginException.java
│ │ ├── log
│ │ │ └── WebHomeDefiner.java
│ │ ├── anno
│ │ │ └── ExcelField.java
│ │ ├── cache
│ │ │ ├── ShiroCacheManager.java
│ │ │ ├── MyWeakCache.java
│ │ │ └── ShiroCache.java
│ │ ├── aop
│ │ │ ├── annotation
│ │ │ │ ├── Module.java
│ │ │ │ └── RecordLog.java
│ │ │ └── assist
│ │ │ │ └── OperateType.java
│ │ └── database
│ │ │ ├── MySqlDBBackupRecovery.java
│ │ │ └── PgDBBackupRecovery.java
│ │ ├── module
│ │ ├── business
│ │ │ ├── system
│ │ │ │ ├── domain
│ │ │ │ │ ├── assist
│ │ │ │ │ │ ├── MessageType.java
│ │ │ │ │ │ ├── MessageInstance.java
│ │ │ │ │ │ ├── PermissionType.java
│ │ │ │ │ │ ├── SyncPeriod.java
│ │ │ │ │ │ ├── Thirdparty.java
│ │ │ │ │ │ ├── LoginType.java
│ │ │ │ │ │ ├── MessageReceiver.java
│ │ │ │ │ │ ├── ValidateType.java
│ │ │ │ │ │ └── SynchroObject.java
│ │ │ │ │ ├── qo
│ │ │ │ │ │ ├── RolePermissionQO.java
│ │ │ │ │ │ ├── OrganizationQO.java
│ │ │ │ │ │ ├── PermissionQO.java
│ │ │ │ │ │ ├── UserGroupUserQO.java
│ │ │ │ │ │ ├── OperateLogTimeQO.java
│ │ │ │ │ │ └── UserQO.java
│ │ │ │ │ ├── dto
│ │ │ │ │ │ ├── ThirdpartyAppDeleteDTO.java
│ │ │ │ │ │ ├── OrgCommonConfigDTO.java
│ │ │ │ │ │ ├── LoginDTO.java
│ │ │ │ │ │ ├── MoveUserDTO.java
│ │ │ │ │ │ ├── BatchUserUserGroupDTO.java
│ │ │ │ │ │ ├── SaveUserDTO.java
│ │ │ │ │ │ ├── SynchroConfigDTO.java
│ │ │ │ │ │ ├── CurrentUserInfoDTO.java
│ │ │ │ │ │ └── PasswordDTO.java
│ │ │ │ │ ├── vo
│ │ │ │ │ │ ├── ManageBindAccountVO.java
│ │ │ │ │ │ ├── OperateLogVO.java
│ │ │ │ │ │ ├── UserGroupUserVO.java
│ │ │ │ │ │ ├── UserGroupVO.java
│ │ │ │ │ │ └── MessageVO.java
│ │ │ │ │ ├── pojo
│ │ │ │ │ │ ├── UserGroupTree.java
│ │ │ │ │ │ ├── OrgTree.java
│ │ │ │ │ │ ├── DingTalkUserAccessToken.java
│ │ │ │ │ │ ├── DingTalkUserInfo.java
│ │ │ │ │ │ └── MenuTree.java
│ │ │ │ │ ├── UserRole.java
│ │ │ │ │ ├── RolePermission.java
│ │ │ │ │ ├── UserOrganization.java
│ │ │ │ │ ├── UserThirdparty.java
│ │ │ │ │ ├── UserUserGroup.java
│ │ │ │ │ ├── Ini.java
│ │ │ │ │ ├── Role.java
│ │ │ │ │ ├── UserGroup.java
│ │ │ │ │ ├── Button.java
│ │ │ │ │ └── ThirdpartyApp.java
│ │ │ │ ├── mapper
│ │ │ │ │ ├── IniMapper.java
│ │ │ │ │ ├── ButtonMapper.java
│ │ │ │ │ ├── UserGroupMapper.java
│ │ │ │ │ ├── RolePermissionMapper.java
│ │ │ │ │ ├── UserUserGroupMapper.java
│ │ │ │ │ ├── UserThirdpartyMapper.java
│ │ │ │ │ ├── RoleMapper.java
│ │ │ │ │ ├── UserOrganizationMapper.java
│ │ │ │ │ ├── UserRoleMapper.java
│ │ │ │ │ ├── ThirdpartyAppMapper.java
│ │ │ │ │ ├── OperateLogMapper.java
│ │ │ │ │ ├── OrganizationMapper.java
│ │ │ │ │ ├── MessageMapper.java
│ │ │ │ │ ├── MenuMapper.java
│ │ │ │ │ └── UserMapper.java
│ │ │ │ ├── controller
│ │ │ │ │ ├── TestController.java
│ │ │ │ │ ├── UserRoleController.java
│ │ │ │ │ └── RolePermissionController.java
│ │ │ │ ├── service
│ │ │ │ │ ├── OperateLogService.java
│ │ │ │ │ └── UserRoleService.java
│ │ │ │ └── realm
│ │ │ │ │ └── CustomCredentialsMatch.java
│ │ │ ├── operation
│ │ │ │ ├── domain
│ │ │ │ │ ├── vo
│ │ │ │ │ │ ├── DataBakVO.java
│ │ │ │ │ │ ├── DataBakStrategyVO.java
│ │ │ │ │ │ ├── MakeDataVO.java
│ │ │ │ │ │ └── LoginStrategyVO.java
│ │ │ │ │ ├── pojo
│ │ │ │ │ │ ├── ServerInfo.java
│ │ │ │ │ │ ├── DBDetail.java
│ │ │ │ │ │ ├── Mem.java
│ │ │ │ │ │ ├── Disk.java
│ │ │ │ │ │ ├── DataBakStrategy.java
│ │ │ │ │ │ ├── Cpu.java
│ │ │ │ │ │ ├── SysFile.java
│ │ │ │ │ │ └── Computer.java
│ │ │ │ │ ├── dto
│ │ │ │ │ │ └── LoginSettingDTO.java
│ │ │ │ │ ├── Dict.java
│ │ │ │ │ └── DictAttr.java
│ │ │ │ ├── mapper
│ │ │ │ │ ├── DictMapper.java
│ │ │ │ │ ├── DataBakMapper.java
│ │ │ │ │ ├── DictAttrMapper.java
│ │ │ │ │ └── LoginRecordMapper.java
│ │ │ │ └── controller
│ │ │ │ │ └── ServerController.java
│ │ │ ├── notify
│ │ │ │ ├── service
│ │ │ │ │ └── tencent
│ │ │ │ │ │ └── bean
│ │ │ │ │ │ ├── TencentCloudSmsError.java
│ │ │ │ │ │ ├── TencentCloudSmsResponse.java
│ │ │ │ │ │ └── TencentCloudSmsSendStatus.java
│ │ │ │ ├── domain
│ │ │ │ │ ├── pojo
│ │ │ │ │ │ ├── TemplateParam.java
│ │ │ │ │ │ ├── TemplateType.java
│ │ │ │ │ │ ├── MailConfig.java
│ │ │ │ │ │ ├── MailParam.java
│ │ │ │ │ │ └── SmsConfig.java
│ │ │ │ │ └── vo
│ │ │ │ │ │ ├── TestMailVO.java
│ │ │ │ │ │ └── SmsConfigVO.java
│ │ │ │ └── NotifyServiceFactory.java
│ │ │ ├── other
│ │ │ │ ├── domain
│ │ │ │ │ ├── pojo
│ │ │ │ │ │ └── BillTypeTree.java
│ │ │ │ │ ├── vo
│ │ │ │ │ │ ├── BillVO.java
│ │ │ │ │ │ └── NotepadVO.java
│ │ │ │ │ ├── qo
│ │ │ │ │ │ ├── BillQO.java
│ │ │ │ │ │ └── BillTypeQO.java
│ │ │ │ │ └── BillType.java
│ │ │ │ └── mapper
│ │ │ │ │ ├── NotepadMapper.java
│ │ │ │ │ ├── BillTypeMapper.java
│ │ │ │ │ └── BillMapper.java
│ │ │ ├── archive
│ │ │ │ ├── mapper
│ │ │ │ │ └── AttachmentMapper.java
│ │ │ │ └── service
│ │ │ │ │ └── AttachmentService.java
│ │ │ └── screen
│ │ │ │ └── ScreenController.java
│ │ ├── base
│ │ │ ├── pojo
│ │ │ │ └── FileVO.java
│ │ │ ├── ExcelTemplateVO.java
│ │ │ ├── ExportParamVO.java
│ │ │ └── ExportColumn.java
│ │ ├── watch
│ │ │ └── DBNotifyInfo.java
│ │ ├── listen
│ │ │ └── ApplicationListener.java
│ │ ├── synchro
│ │ │ └── organization
│ │ │ │ ├── dingtalk
│ │ │ │ └── bean
│ │ │ │ │ ├── DingTalkDeptResult.java
│ │ │ │ │ ├── DingTalkUserResponse.java
│ │ │ │ │ ├── DingTalkUserResult.java
│ │ │ │ │ ├── DingTalkAccessToken.java
│ │ │ │ │ ├── DingTalkDeptResponse.java
│ │ │ │ │ └── DingTalkUserResultItem.java
│ │ │ │ └── wechat
│ │ │ │ └── bean
│ │ │ │ ├── WorkWechatDeptListResponse.java
│ │ │ │ ├── WorkWechatUserListResponse.java
│ │ │ │ ├── WorkWechatDeptResult.java
│ │ │ │ ├── WorkWechatAccessToken.java
│ │ │ │ └── WorkWechatUserResult.java
│ │ └── socket
│ │ │ └── BaseWebSocketServer.java
│ │ ├── intercept
│ │ ├── AuthQuery.java
│ │ └── SqlSessionListener.java
│ │ ├── config
│ │ ├── WebSocketConfig.java
│ │ ├── FilterConfig.java
│ │ ├── freemarker
│ │ │ ├── MyFreeMarkerView.java
│ │ │ └── MyFreeMarkerViewResolver.java
│ │ └── AppErrorPagesConfig.java
│ │ ├── filter
│ │ └── RequestFilter.java
│ │ └── QmplatformApplication.java
└── test
│ └── java
│ └── TestJasypt.java
├── .gitattributes
└── shell
├── db_bak_recover_mysql.sh
└── db_bak_recover.sh
/src/main/resources/static/plugin/layui/module/xm-select/static/element-icons.535877f.woff:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.css linguist-language=java
2 | *.js linguist-language=java
3 | *.ftl linguist-language=java
--------------------------------------------------------------------------------
/src/main/resources/config/cron.setting:
--------------------------------------------------------------------------------
1 | [com.qcz.qmplatform.module.schedule]
2 | DeleteTmpFileSchedule.run = */3 * * * *
--------------------------------------------------------------------------------
/src/main/resources/static/common/css/skin-black.css:
--------------------------------------------------------------------------------
1 | .layui-side {
2 | background-color: #2f363c !important
3 | }
--------------------------------------------------------------------------------
/src/main/resources/tomcat_https.cer:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/tomcat_https.cer
--------------------------------------------------------------------------------
/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports:
--------------------------------------------------------------------------------
1 | com.qcz.qmplatform.intercept.SqlSessionListener
--------------------------------------------------------------------------------
/src/main/resources/tomcat_https.keystore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/tomcat_https.keystore
--------------------------------------------------------------------------------
/src/main/resources/i18n/messages.properties:
--------------------------------------------------------------------------------
1 | sms_template_param_not_match=\u77ED\u4FE1\u6A21\u677F\u53C2\u6570\u4E0D\u5339\u914D\uFF0C\u8BF7\u68C0\u67E5\uFF01
--------------------------------------------------------------------------------
/src/main/java/com/qcz/qmplatform/common/validation/groups/Save.java:
--------------------------------------------------------------------------------
1 | package com.qcz.qmplatform.common.validation.groups;
2 |
3 | public interface Save {
4 | }
5 |
--------------------------------------------------------------------------------
/src/main/java/com/qcz/qmplatform/common/validation/groups/Delete.java:
--------------------------------------------------------------------------------
1 | package com.qcz.qmplatform.common.validation.groups;
2 |
3 | public interface Delete {
4 | }
5 |
--------------------------------------------------------------------------------
/src/main/java/com/qcz/qmplatform/common/validation/groups/Get.java:
--------------------------------------------------------------------------------
1 | package com.qcz.qmplatform.common.validation.groups;
2 |
3 | public interface Get {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/src/main/java/com/qcz/qmplatform/common/validation/groups/Insert.java:
--------------------------------------------------------------------------------
1 | package com.qcz.qmplatform.common.validation.groups;
2 |
3 | public interface Insert {
4 | }
5 |
--------------------------------------------------------------------------------
/src/main/java/com/qcz/qmplatform/common/validation/groups/Update.java:
--------------------------------------------------------------------------------
1 | package com.qcz.qmplatform.common.validation.groups;
2 |
3 | public interface Update {
4 | }
5 |
--------------------------------------------------------------------------------
/src/main/resources/static/common/font/Lenovo-R.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/common/font/Lenovo-R.ttf
--------------------------------------------------------------------------------
/src/main/resources/static/common/font/iconfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/common/font/iconfont.ttf
--------------------------------------------------------------------------------
/src/main/resources/static/common/image/charon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/common/image/charon.png
--------------------------------------------------------------------------------
/src/main/resources/static/common/image/logo-pc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/common/image/logo-pc.png
--------------------------------------------------------------------------------
/src/main/resources/static/common/image/logo-code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/common/image/logo-code.png
--------------------------------------------------------------------------------
/src/main/resources/static/common/image/logo-pwd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/common/image/logo-pwd.png
--------------------------------------------------------------------------------
/src/main/resources/static/module/screen/images/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/module/screen/images/bg.jpg
--------------------------------------------------------------------------------
/src/main/resources/static/module/screen/images/line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/module/screen/images/line.png
--------------------------------------------------------------------------------
/src/main/resources/static/module/screen/picture/jt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/module/screen/picture/jt.png
--------------------------------------------------------------------------------
/src/main/resources/static/module/screen/picture/lbx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/module/screen/picture/lbx.png
--------------------------------------------------------------------------------
/src/main/resources/static/module/screen/picture/map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/module/screen/picture/map.png
--------------------------------------------------------------------------------
/src/main/resources/static/module/screen/font/DS-DIGIT.TTF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/module/screen/font/DS-DIGIT.TTF
--------------------------------------------------------------------------------
/src/main/resources/static/module/screen/images/head_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/module/screen/images/head_bg.png
--------------------------------------------------------------------------------
/src/main/resources/static/plugin/layui/font/iconfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/plugin/layui/font/iconfont.eot
--------------------------------------------------------------------------------
/src/main/resources/static/plugin/layui/font/iconfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/plugin/layui/font/iconfont.ttf
--------------------------------------------------------------------------------
/src/main/resources/static/plugin/layui/font/iconfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/plugin/layui/font/iconfont.woff
--------------------------------------------------------------------------------
/src/main/resources/static/plugin/layui/font/iconfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/plugin/layui/font/iconfont.woff2
--------------------------------------------------------------------------------
/src/main/resources/static/common/image/login-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/common/image/login-background.png
--------------------------------------------------------------------------------
/src/main/resources/static/module/screen/picture/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/module/screen/picture/loading.gif
--------------------------------------------------------------------------------
/src/main/resources/static/module/screen/picture/weather.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/module/screen/picture/weather.png
--------------------------------------------------------------------------------
/src/main/resources/i18n/messages_en_US.properties:
--------------------------------------------------------------------------------
1 | account_login=Account Login
2 | pwd_not_blank=The password cannot be empty
3 | sms_template_param_not_match=SMS template parameters do not match, please check!
--------------------------------------------------------------------------------
/src/main/resources/static/plugin/layui/module/dtree/font/dtreefont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/plugin/layui/module/dtree/font/dtreefont.eot
--------------------------------------------------------------------------------
/src/main/resources/static/plugin/layui/module/dtree/font/dtreefont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/plugin/layui/module/dtree/font/dtreefont.ttf
--------------------------------------------------------------------------------
/src/main/resources/static/plugin/layui/module/dtree/font/dtreefont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/plugin/layui/module/dtree/font/dtreefont.woff
--------------------------------------------------------------------------------
/src/main/resources/static/plugin/tinymce/langs/README.md:
--------------------------------------------------------------------------------
1 | This is where language files should be placed.
2 |
3 | Please DO NOT translate these directly, use this service instead: https://crowdin.com/project/tinymce
4 |
--------------------------------------------------------------------------------
/src/main/resources/static/plugin/layui/module/xm-select/static/wx.b556b2e.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/plugin/layui/module/xm-select/static/wx.b556b2e.jpg
--------------------------------------------------------------------------------
/src/main/resources/static/plugin/layui/module/xm-select/static/element-icons.732389d.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qcz-left/springboot-layui-qmplatform/HEAD/src/main/resources/static/plugin/layui/module/xm-select/static/element-icons.732389d.ttf
--------------------------------------------------------------------------------
/src/main/resources/application-dev.yml:
--------------------------------------------------------------------------------
1 | spring:
2 | datasource:
3 | url: jdbc:postgresql://127.0.0.1:5432/${custom.database}
4 | username: postgres
5 | password: postgres
6 |
7 | custom:
8 | # 是否开启http重定向到https
9 | redirect-https: false
--------------------------------------------------------------------------------
/src/main/resources/i18n/messages_zh_CN.properties:
--------------------------------------------------------------------------------
1 | account_login=\u8D26\u6237\u767B\u5F55
2 | pwd_not_blank=\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A
3 | sms_template_param_not_match=\u77ED\u4FE1\u6A21\u677F\u53C2\u6570\u4E0D\u5339\u914D\uFF0C\u8BF7\u68C0\u67E5\uFF01
--------------------------------------------------------------------------------
/src/main/java/com/qcz/qmplatform/common/utils/SmsUtils.java:
--------------------------------------------------------------------------------
1 | package com.qcz.qmplatform.common.utils;
2 |
3 | /**
4 | * 短信工具类
5 | */
6 | public class SmsUtils {
7 |
8 | public static final String DAT_SMS_CONFIG = FileUtils.WEB_PATH + "/Dat/smsConfig.dat";
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/src/main/resources/mapper/system/IniMapper.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 | * 系统属性配置 Mapper 接口 9 | *
10 | * 11 | * @author quchangzhong 12 | * @since 2020-12-26 13 | */ 14 | public interface IniMapper extends BaseMapper8 | * Mapper 接口 9 | *
10 | * 11 | * @author quchangzhong 12 | * @since 2020-09-03 13 | */ 14 | public interface ButtonMapper extends BaseMapper