diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a2a3040 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/** +!**/src/test/** + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ + +### VS Code ### +.vscode/ diff --git a/target/classes/META-INF/spring-devtools.properties b/target/classes/META-INF/spring-devtools.properties deleted file mode 100644 index 37e7b58..0000000 --- a/target/classes/META-INF/spring-devtools.properties +++ /dev/null @@ -1 +0,0 @@ -restart.include.json=/com.alibaba.fastjson2.*.jar \ No newline at end of file diff --git a/target/classes/application-druid.yml b/target/classes/application-druid.yml deleted file mode 100644 index 0d46e89..0000000 --- a/target/classes/application-druid.yml +++ /dev/null @@ -1,61 +0,0 @@ -# 数据源配置 -spring: - datasource: - type: com.alibaba.druid.pool.DruidDataSource - driverClassName: com.mysql.cj.jdbc.Driver - druid: - # 主库数据源 - master: - url: jdbc:mysql://localhost:3308/jgwebsite?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 - username: root - password: 123456 - # 从库数据源 - slave: - # 从数据源开关/默认关闭 - enabled: false - url: - username: - password: - # 初始连接数 - initialSize: 5 - # 最小连接池数量 - minIdle: 10 - # 最大连接池数量 - maxActive: 20 - # 配置获取连接等待超时的时间 - maxWait: 60000 - # 配置连接超时时间 - connectTimeout: 30000 - # 配置网络超时时间 - socketTimeout: 60000 - # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 - timeBetweenEvictionRunsMillis: 60000 - # 配置一个连接在池中最小生存的时间,单位是毫秒 - minEvictableIdleTimeMillis: 300000 - # 配置一个连接在池中最大生存的时间,单位是毫秒 - maxEvictableIdleTimeMillis: 900000 - # 配置检测连接是否有效 - validationQuery: SELECT 1 FROM DUAL - testWhileIdle: true - testOnBorrow: false - testOnReturn: false - webStatFilter: - enabled: true - statViewServlet: - enabled: true - # 设置白名单,不填则允许所有访问 - allow: - url-pattern: /druid/* - # 控制台管理用户名和密码 - login-username: jg - login-password: 123456 - filter: - stat: - enabled: true - # 慢SQL记录 - log-slow-sql: true - slow-sql-millis: 1000 - merge-sql: true - wall: - config: - multi-statement-allow: true \ No newline at end of file diff --git a/target/classes/application.yml b/target/classes/application.yml deleted file mode 100644 index df4e094..0000000 --- a/target/classes/application.yml +++ /dev/null @@ -1,152 +0,0 @@ -# 项目相关配置 -jg: - # 名称 - name: JG - # 版本 -# version: 3.8.7 - version: 4.0.0 - # 版权年份 - copyrightYear: 2024 - # 文件路径 示例( Windows配置D:/jg/uploadPath,Linux配置 /home/jg/uploadPath) - profile: D:/JG/uploadPath - # 获取ip地址开关 - addressEnabled: false - # 验证码类型 math 数字计算 char 字符验证 - captchaType: math - -# 开发环境配置 -server: - # 服务器的HTTP端口,默认为8080 - port: 9999 - servlet: - # 应用的访问路径 - context-path: / - tomcat: - # tomcat的URI编码 - uri-encoding: UTF-8 - # 连接数满后的排队数,默认为100 - accept-count: 1000 - threads: - # tomcat最大线程数,默认为200 - max: 800 - # Tomcat启动初始化的线程数,默认值10 - min-spare: 100 - -# 日志配置 -logging: - level: - com.jg: debug - org.springframework: warn - -# 用户配置 -user: - password: - # 密码最大错误次数 - maxRetryCount: 5 - # 密码锁定时间(默认10分钟) - lockTime: 10 - -# Spring配置 -spring: - # 资源信息 - messages: - # 国际化资源文件路径 - basename: i18n/messages - profiles: - active: druid - # 文件上传 - servlet: - multipart: - # 单个文件大小 - max-file-size: 10MB - # 设置总上传的文件大小 - max-request-size: 20MB - # 服务模块 - devtools: - restart: - # 热部署开关 - enabled: true - # redis 配置 - redis: - # 地址 - host: 192.168.50.18 - # 端口,默认为6379 - port: 6379 - # 数据库索引 - database: 0 - # 密码 - password: jingang@redis - # 连接超时时间 - timeout: 10s - lettuce: - pool: - # 连接池中的最小空闲连接 - min-idle: 0 - # 连接池中的最大空闲连接 - max-idle: 8 - # 连接池的最大数据库连接数 - max-active: 8 - # #连接池最大阻塞等待时间(使用负值表示没有限制) - max-wait: -1ms - -# token配置 -token: - # 令牌自定义标识 - header: Authorization - # 令牌密钥 - secret: abcdefghijklmnopqrstuvwxyz - # 令牌有效期(默认30分钟) - expireTime: 31536000 - -## MyBatis配置 -#mybatis: -# # 搜索指定包别名 -# typeAliasesPackage: com.jg.project.**.domain -# # 配置mapper的扫描,找到所有的mapper.xml映射文件 -# mapperLocations: classpath*:mybatis/**/*Mapper.xml -# # 加载全局的配置文件 -# configLocation: classpath:mybatis/mybatis-config.xml -mybatis-plus: - mapper-locations: classpath*:mybatis/**/*Mapper.xml - type-aliases-package: com.jg.**.domain - global-config: - db-config: - id-type: auto - configuration: - map-underscore-to-camel-case: true - cache-enabled: false - log-impl: org.apache.ibatis.logging.stdout.StdOutImpl - -# PageHelper分页插件 -pagehelper: - helperDialect: mysql - supportMethodsArguments: true - params: count=countSql - -# Swagger配置 -swagger: - # 是否开启swagger - enabled: true - # 请求前缀 -# pathMapping: /dev-api - pathMapping: - -# 防止XSS攻击 -xss: - # 过滤开关 - enabled: true - # 排除链接(多个用逗号分隔) - excludes: /system/notice - # 匹配链接 - urlPatterns: /system/*,/monitor/*,/tool/* - -# 代码生成 -gen: - # 作者 - author: jg - # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool - packageName: com.jg.project.system - # 自动去除表前缀,默认是true - autoRemovePre: false - # 表前缀(生成类名不会包含表前缀,多个用逗号分隔) - tablePrefix: sys_ \ No newline at end of file diff --git a/target/classes/banner.txt b/target/classes/banner.txt deleted file mode 100644 index ecf2e43..0000000 --- a/target/classes/banner.txt +++ /dev/null @@ -1,11 +0,0 @@ -Application Version: ${jg.version} -Spring Boot Version: ${spring-boot.version} - - _____ _ _ _ ___ _____ __ _____ - / ____| (_) | | | | |__ \ | ____/_ | ____| -| (___ _ __ _ __ _ _ __ __ _| |__ ___ ___ | |_ ) | | |__ | | |__ - \___ \| '_ \| '__| | '_ \ / _` | '_ \ / _ \ / _ \| __| / / |___ \ | |___ \ - ____) | |_) | | | | | | | (_| | |_) | (_) | (_) | |_ / /_ _ ___) || |___) | -|_____/| .__/|_| |_|_| |_|\__, |_.__/ \___/ \___/ \__| |____(_)____(_)_|____/ - | | __/ | - |_| |___/ diff --git a/target/classes/com/jg/JGApplication.class b/target/classes/com/jg/JGApplication.class deleted file mode 100644 index 12d2766..0000000 Binary files a/target/classes/com/jg/JGApplication.class and /dev/null differ diff --git a/target/classes/com/jg/JGServletInitializer.class b/target/classes/com/jg/JGServletInitializer.class deleted file mode 100644 index d788013..0000000 Binary files a/target/classes/com/jg/JGServletInitializer.class and /dev/null differ diff --git a/target/classes/com/jg/common/constant/CacheConstants.class b/target/classes/com/jg/common/constant/CacheConstants.class deleted file mode 100644 index 1114a37..0000000 Binary files a/target/classes/com/jg/common/constant/CacheConstants.class and /dev/null differ diff --git a/target/classes/com/jg/common/constant/Constants.class b/target/classes/com/jg/common/constant/Constants.class deleted file mode 100644 index 4dd5cff..0000000 Binary files a/target/classes/com/jg/common/constant/Constants.class and /dev/null differ diff --git a/target/classes/com/jg/common/constant/GenConstants.class b/target/classes/com/jg/common/constant/GenConstants.class deleted file mode 100644 index e42578d..0000000 Binary files a/target/classes/com/jg/common/constant/GenConstants.class and /dev/null differ diff --git a/target/classes/com/jg/common/constant/HttpStatus.class b/target/classes/com/jg/common/constant/HttpStatus.class deleted file mode 100644 index 024f176..0000000 Binary files a/target/classes/com/jg/common/constant/HttpStatus.class and /dev/null differ diff --git a/target/classes/com/jg/common/constant/ScheduleConstants$Status.class b/target/classes/com/jg/common/constant/ScheduleConstants$Status.class deleted file mode 100644 index 97001c3..0000000 Binary files a/target/classes/com/jg/common/constant/ScheduleConstants$Status.class and /dev/null differ diff --git a/target/classes/com/jg/common/constant/ScheduleConstants.class b/target/classes/com/jg/common/constant/ScheduleConstants.class deleted file mode 100644 index c13b96b..0000000 Binary files a/target/classes/com/jg/common/constant/ScheduleConstants.class and /dev/null differ diff --git a/target/classes/com/jg/common/constant/UserConstants.class b/target/classes/com/jg/common/constant/UserConstants.class deleted file mode 100644 index 6270438..0000000 Binary files a/target/classes/com/jg/common/constant/UserConstants.class and /dev/null differ diff --git a/target/classes/com/jg/common/core/text/CharsetKit.class b/target/classes/com/jg/common/core/text/CharsetKit.class deleted file mode 100644 index 632da08..0000000 Binary files a/target/classes/com/jg/common/core/text/CharsetKit.class and /dev/null differ diff --git a/target/classes/com/jg/common/core/text/Convert.class b/target/classes/com/jg/common/core/text/Convert.class deleted file mode 100644 index fd77b04..0000000 Binary files a/target/classes/com/jg/common/core/text/Convert.class and /dev/null differ diff --git a/target/classes/com/jg/common/core/text/StrFormatter.class b/target/classes/com/jg/common/core/text/StrFormatter.class deleted file mode 100644 index 6b7ffa5..0000000 Binary files a/target/classes/com/jg/common/core/text/StrFormatter.class and /dev/null differ diff --git a/target/classes/com/jg/common/enums/HttpMethod.class b/target/classes/com/jg/common/enums/HttpMethod.class deleted file mode 100644 index 9ff1259..0000000 Binary files a/target/classes/com/jg/common/enums/HttpMethod.class and /dev/null differ diff --git a/target/classes/com/jg/common/enums/UserStatus.class b/target/classes/com/jg/common/enums/UserStatus.class deleted file mode 100644 index 7358859..0000000 Binary files a/target/classes/com/jg/common/enums/UserStatus.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/DemoModeException.class b/target/classes/com/jg/common/exception/DemoModeException.class deleted file mode 100644 index 61378a8..0000000 Binary files a/target/classes/com/jg/common/exception/DemoModeException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/GlobalException.class b/target/classes/com/jg/common/exception/GlobalException.class deleted file mode 100644 index a7183b9..0000000 Binary files a/target/classes/com/jg/common/exception/GlobalException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/ServiceException.class b/target/classes/com/jg/common/exception/ServiceException.class deleted file mode 100644 index 4a87df1..0000000 Binary files a/target/classes/com/jg/common/exception/ServiceException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/UtilException.class b/target/classes/com/jg/common/exception/UtilException.class deleted file mode 100644 index d28bac8..0000000 Binary files a/target/classes/com/jg/common/exception/UtilException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/base/BaseException.class b/target/classes/com/jg/common/exception/base/BaseException.class deleted file mode 100644 index e626558..0000000 Binary files a/target/classes/com/jg/common/exception/base/BaseException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/file/FileException.class b/target/classes/com/jg/common/exception/file/FileException.class deleted file mode 100644 index ddec31b..0000000 Binary files a/target/classes/com/jg/common/exception/file/FileException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/file/FileNameLengthLimitExceededException.class b/target/classes/com/jg/common/exception/file/FileNameLengthLimitExceededException.class deleted file mode 100644 index 8f917bd..0000000 Binary files a/target/classes/com/jg/common/exception/file/FileNameLengthLimitExceededException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/file/FileSizeLimitExceededException.class b/target/classes/com/jg/common/exception/file/FileSizeLimitExceededException.class deleted file mode 100644 index e9d361c..0000000 Binary files a/target/classes/com/jg/common/exception/file/FileSizeLimitExceededException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/file/FileUploadException.class b/target/classes/com/jg/common/exception/file/FileUploadException.class deleted file mode 100644 index a661ab5..0000000 Binary files a/target/classes/com/jg/common/exception/file/FileUploadException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidFlashExtensionException.class b/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidFlashExtensionException.class deleted file mode 100644 index d28b59d..0000000 Binary files a/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidFlashExtensionException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidImageExtensionException.class b/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidImageExtensionException.class deleted file mode 100644 index 69d092c..0000000 Binary files a/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidImageExtensionException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidMediaExtensionException.class b/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidMediaExtensionException.class deleted file mode 100644 index 5ce1303..0000000 Binary files a/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidMediaExtensionException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidVideoExtensionException.class b/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidVideoExtensionException.class deleted file mode 100644 index 36a2573..0000000 Binary files a/target/classes/com/jg/common/exception/file/InvalidExtensionException$InvalidVideoExtensionException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/file/InvalidExtensionException.class b/target/classes/com/jg/common/exception/file/InvalidExtensionException.class deleted file mode 100644 index 197e196..0000000 Binary files a/target/classes/com/jg/common/exception/file/InvalidExtensionException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/job/TaskException$Code.class b/target/classes/com/jg/common/exception/job/TaskException$Code.class deleted file mode 100644 index 660be1d..0000000 Binary files a/target/classes/com/jg/common/exception/job/TaskException$Code.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/job/TaskException.class b/target/classes/com/jg/common/exception/job/TaskException.class deleted file mode 100644 index 5b88eae..0000000 Binary files a/target/classes/com/jg/common/exception/job/TaskException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/user/BlackListException.class b/target/classes/com/jg/common/exception/user/BlackListException.class deleted file mode 100644 index d06368a..0000000 Binary files a/target/classes/com/jg/common/exception/user/BlackListException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/user/CaptchaException.class b/target/classes/com/jg/common/exception/user/CaptchaException.class deleted file mode 100644 index 21d081f..0000000 Binary files a/target/classes/com/jg/common/exception/user/CaptchaException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/user/CaptchaExpireException.class b/target/classes/com/jg/common/exception/user/CaptchaExpireException.class deleted file mode 100644 index 6219dc2..0000000 Binary files a/target/classes/com/jg/common/exception/user/CaptchaExpireException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/user/UserException.class b/target/classes/com/jg/common/exception/user/UserException.class deleted file mode 100644 index 65ae429..0000000 Binary files a/target/classes/com/jg/common/exception/user/UserException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/user/UserNotExistsException.class b/target/classes/com/jg/common/exception/user/UserNotExistsException.class deleted file mode 100644 index 582ba2a..0000000 Binary files a/target/classes/com/jg/common/exception/user/UserNotExistsException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/user/UserPasswordNotMatchException.class b/target/classes/com/jg/common/exception/user/UserPasswordNotMatchException.class deleted file mode 100644 index 242cdbe..0000000 Binary files a/target/classes/com/jg/common/exception/user/UserPasswordNotMatchException.class and /dev/null differ diff --git a/target/classes/com/jg/common/exception/user/UserPasswordRetryLimitExceedException.class b/target/classes/com/jg/common/exception/user/UserPasswordRetryLimitExceedException.class deleted file mode 100644 index 2b19587..0000000 Binary files a/target/classes/com/jg/common/exception/user/UserPasswordRetryLimitExceedException.class and /dev/null differ diff --git a/target/classes/com/jg/common/filter/PropertyPreExcludeFilter.class b/target/classes/com/jg/common/filter/PropertyPreExcludeFilter.class deleted file mode 100644 index 5720f28..0000000 Binary files a/target/classes/com/jg/common/filter/PropertyPreExcludeFilter.class and /dev/null differ diff --git a/target/classes/com/jg/common/filter/RepeatableFilter.class b/target/classes/com/jg/common/filter/RepeatableFilter.class deleted file mode 100644 index 4dba8a0..0000000 Binary files a/target/classes/com/jg/common/filter/RepeatableFilter.class and /dev/null differ diff --git a/target/classes/com/jg/common/filter/RepeatedlyRequestWrapper$1.class b/target/classes/com/jg/common/filter/RepeatedlyRequestWrapper$1.class deleted file mode 100644 index b002cb6..0000000 Binary files a/target/classes/com/jg/common/filter/RepeatedlyRequestWrapper$1.class and /dev/null differ diff --git a/target/classes/com/jg/common/filter/RepeatedlyRequestWrapper.class b/target/classes/com/jg/common/filter/RepeatedlyRequestWrapper.class deleted file mode 100644 index e8c8125..0000000 Binary files a/target/classes/com/jg/common/filter/RepeatedlyRequestWrapper.class and /dev/null differ diff --git a/target/classes/com/jg/common/filter/XssFilter.class b/target/classes/com/jg/common/filter/XssFilter.class deleted file mode 100644 index 61cbaad..0000000 Binary files a/target/classes/com/jg/common/filter/XssFilter.class and /dev/null differ diff --git a/target/classes/com/jg/common/filter/XssHttpServletRequestWrapper$1.class b/target/classes/com/jg/common/filter/XssHttpServletRequestWrapper$1.class deleted file mode 100644 index 932e50e..0000000 Binary files a/target/classes/com/jg/common/filter/XssHttpServletRequestWrapper$1.class and /dev/null differ diff --git a/target/classes/com/jg/common/filter/XssHttpServletRequestWrapper.class b/target/classes/com/jg/common/filter/XssHttpServletRequestWrapper.class deleted file mode 100644 index 1890494..0000000 Binary files a/target/classes/com/jg/common/filter/XssHttpServletRequestWrapper.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/Arith.class b/target/classes/com/jg/common/utils/Arith.class deleted file mode 100644 index 2f28788..0000000 Binary files a/target/classes/com/jg/common/utils/Arith.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/DateUtils.class b/target/classes/com/jg/common/utils/DateUtils.class deleted file mode 100644 index 9954da6..0000000 Binary files a/target/classes/com/jg/common/utils/DateUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/DictUtils.class b/target/classes/com/jg/common/utils/DictUtils.class deleted file mode 100644 index a4b17f7..0000000 Binary files a/target/classes/com/jg/common/utils/DictUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/ExceptionUtil.class b/target/classes/com/jg/common/utils/ExceptionUtil.class deleted file mode 100644 index b920433..0000000 Binary files a/target/classes/com/jg/common/utils/ExceptionUtil.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/ListPage.class b/target/classes/com/jg/common/utils/ListPage.class deleted file mode 100644 index ec06e86..0000000 Binary files a/target/classes/com/jg/common/utils/ListPage.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/LogUtils.class b/target/classes/com/jg/common/utils/LogUtils.class deleted file mode 100644 index b2b7374..0000000 Binary files a/target/classes/com/jg/common/utils/LogUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/MessageUtils.class b/target/classes/com/jg/common/utils/MessageUtils.class deleted file mode 100644 index 1fcb211..0000000 Binary files a/target/classes/com/jg/common/utils/MessageUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/PageUtils.class b/target/classes/com/jg/common/utils/PageUtils.class deleted file mode 100644 index 08a40e4..0000000 Binary files a/target/classes/com/jg/common/utils/PageUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/QueryPage.class b/target/classes/com/jg/common/utils/QueryPage.class deleted file mode 100644 index f4de4e8..0000000 Binary files a/target/classes/com/jg/common/utils/QueryPage.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/SecurityUtils.class b/target/classes/com/jg/common/utils/SecurityUtils.class deleted file mode 100644 index 55c2636..0000000 Binary files a/target/classes/com/jg/common/utils/SecurityUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/ServletUtils.class b/target/classes/com/jg/common/utils/ServletUtils.class deleted file mode 100644 index 65c45f5..0000000 Binary files a/target/classes/com/jg/common/utils/ServletUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/StringUtils.class b/target/classes/com/jg/common/utils/StringUtils.class deleted file mode 100644 index 467c0df..0000000 Binary files a/target/classes/com/jg/common/utils/StringUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/Threads.class b/target/classes/com/jg/common/utils/Threads.class deleted file mode 100644 index 581a03c..0000000 Binary files a/target/classes/com/jg/common/utils/Threads.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/bean/BeanUtils.class b/target/classes/com/jg/common/utils/bean/BeanUtils.class deleted file mode 100644 index 50df7cf..0000000 Binary files a/target/classes/com/jg/common/utils/bean/BeanUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/bean/BeanValidators.class b/target/classes/com/jg/common/utils/bean/BeanValidators.class deleted file mode 100644 index 621b83f..0000000 Binary files a/target/classes/com/jg/common/utils/bean/BeanValidators.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/file/FileTypeUtils.class b/target/classes/com/jg/common/utils/file/FileTypeUtils.class deleted file mode 100644 index 8829c1c..0000000 Binary files a/target/classes/com/jg/common/utils/file/FileTypeUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/file/FileUploadUtils.class b/target/classes/com/jg/common/utils/file/FileUploadUtils.class deleted file mode 100644 index 5d0e632..0000000 Binary files a/target/classes/com/jg/common/utils/file/FileUploadUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/file/FileUtils.class b/target/classes/com/jg/common/utils/file/FileUtils.class deleted file mode 100644 index 9e63177..0000000 Binary files a/target/classes/com/jg/common/utils/file/FileUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/file/ImageUtils.class b/target/classes/com/jg/common/utils/file/ImageUtils.class deleted file mode 100644 index 28cfee3..0000000 Binary files a/target/classes/com/jg/common/utils/file/ImageUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/file/MimeTypeUtils.class b/target/classes/com/jg/common/utils/file/MimeTypeUtils.class deleted file mode 100644 index 54c65ee..0000000 Binary files a/target/classes/com/jg/common/utils/file/MimeTypeUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/html/EscapeUtil.class b/target/classes/com/jg/common/utils/html/EscapeUtil.class deleted file mode 100644 index ef77e3b..0000000 Binary files a/target/classes/com/jg/common/utils/html/EscapeUtil.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/html/HTMLFilter.class b/target/classes/com/jg/common/utils/html/HTMLFilter.class deleted file mode 100644 index 6dd5b4c..0000000 Binary files a/target/classes/com/jg/common/utils/html/HTMLFilter.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/http/HttpHelper.class b/target/classes/com/jg/common/utils/http/HttpHelper.class deleted file mode 100644 index 58d5531..0000000 Binary files a/target/classes/com/jg/common/utils/http/HttpHelper.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/http/HttpUtils$1.class b/target/classes/com/jg/common/utils/http/HttpUtils$1.class deleted file mode 100644 index 5b7e3f8..0000000 Binary files a/target/classes/com/jg/common/utils/http/HttpUtils$1.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/http/HttpUtils$TrustAnyHostnameVerifier.class b/target/classes/com/jg/common/utils/http/HttpUtils$TrustAnyHostnameVerifier.class deleted file mode 100644 index 71bd68f..0000000 Binary files a/target/classes/com/jg/common/utils/http/HttpUtils$TrustAnyHostnameVerifier.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/http/HttpUtils$TrustAnyTrustManager.class b/target/classes/com/jg/common/utils/http/HttpUtils$TrustAnyTrustManager.class deleted file mode 100644 index eff5df1..0000000 Binary files a/target/classes/com/jg/common/utils/http/HttpUtils$TrustAnyTrustManager.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/http/HttpUtils.class b/target/classes/com/jg/common/utils/http/HttpUtils.class deleted file mode 100644 index 08285e7..0000000 Binary files a/target/classes/com/jg/common/utils/http/HttpUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/ip/AddressUtils.class b/target/classes/com/jg/common/utils/ip/AddressUtils.class deleted file mode 100644 index 9fa787c..0000000 Binary files a/target/classes/com/jg/common/utils/ip/AddressUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/ip/IpUtils.class b/target/classes/com/jg/common/utils/ip/IpUtils.class deleted file mode 100644 index 016b7cd..0000000 Binary files a/target/classes/com/jg/common/utils/ip/IpUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/job/AbstractQuartzJob.class b/target/classes/com/jg/common/utils/job/AbstractQuartzJob.class deleted file mode 100644 index a17973a..0000000 Binary files a/target/classes/com/jg/common/utils/job/AbstractQuartzJob.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/job/CronUtils.class b/target/classes/com/jg/common/utils/job/CronUtils.class deleted file mode 100644 index ed8d8e2..0000000 Binary files a/target/classes/com/jg/common/utils/job/CronUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/job/JobInvokeUtil.class b/target/classes/com/jg/common/utils/job/JobInvokeUtil.class deleted file mode 100644 index 494a459..0000000 Binary files a/target/classes/com/jg/common/utils/job/JobInvokeUtil.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/job/QuartzDisallowConcurrentExecution.class b/target/classes/com/jg/common/utils/job/QuartzDisallowConcurrentExecution.class deleted file mode 100644 index 65af68d..0000000 Binary files a/target/classes/com/jg/common/utils/job/QuartzDisallowConcurrentExecution.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/job/QuartzJobExecution.class b/target/classes/com/jg/common/utils/job/QuartzJobExecution.class deleted file mode 100644 index bb01c68..0000000 Binary files a/target/classes/com/jg/common/utils/job/QuartzJobExecution.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/job/ScheduleUtils.class b/target/classes/com/jg/common/utils/job/ScheduleUtils.class deleted file mode 100644 index 7f2e400..0000000 Binary files a/target/classes/com/jg/common/utils/job/ScheduleUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/poi/ExcelHandlerAdapter.class b/target/classes/com/jg/common/utils/poi/ExcelHandlerAdapter.class deleted file mode 100644 index 9b2041f..0000000 Binary files a/target/classes/com/jg/common/utils/poi/ExcelHandlerAdapter.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/poi/ExcelUtil.class b/target/classes/com/jg/common/utils/poi/ExcelUtil.class deleted file mode 100644 index 798fea0..0000000 Binary files a/target/classes/com/jg/common/utils/poi/ExcelUtil.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/reflect/ReflectUtils.class b/target/classes/com/jg/common/utils/reflect/ReflectUtils.class deleted file mode 100644 index 9a6f38b..0000000 Binary files a/target/classes/com/jg/common/utils/reflect/ReflectUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/sign/Base64.class b/target/classes/com/jg/common/utils/sign/Base64.class deleted file mode 100644 index 156256f..0000000 Binary files a/target/classes/com/jg/common/utils/sign/Base64.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/sign/Md5Utils.class b/target/classes/com/jg/common/utils/sign/Md5Utils.class deleted file mode 100644 index 6ddce37..0000000 Binary files a/target/classes/com/jg/common/utils/sign/Md5Utils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/spring/SpringUtils.class b/target/classes/com/jg/common/utils/spring/SpringUtils.class deleted file mode 100644 index bc951fd..0000000 Binary files a/target/classes/com/jg/common/utils/spring/SpringUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/sql/SqlUtil.class b/target/classes/com/jg/common/utils/sql/SqlUtil.class deleted file mode 100644 index 2644095..0000000 Binary files a/target/classes/com/jg/common/utils/sql/SqlUtil.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/uuid/IdUtils.class b/target/classes/com/jg/common/utils/uuid/IdUtils.class deleted file mode 100644 index 953fd64..0000000 Binary files a/target/classes/com/jg/common/utils/uuid/IdUtils.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/uuid/Seq.class b/target/classes/com/jg/common/utils/uuid/Seq.class deleted file mode 100644 index 0b781de..0000000 Binary files a/target/classes/com/jg/common/utils/uuid/Seq.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/uuid/UUID$Holder.class b/target/classes/com/jg/common/utils/uuid/UUID$Holder.class deleted file mode 100644 index c9d0239..0000000 Binary files a/target/classes/com/jg/common/utils/uuid/UUID$Holder.class and /dev/null differ diff --git a/target/classes/com/jg/common/utils/uuid/UUID.class b/target/classes/com/jg/common/utils/uuid/UUID.class deleted file mode 100644 index 94fe13f..0000000 Binary files a/target/classes/com/jg/common/utils/uuid/UUID.class and /dev/null differ diff --git a/target/classes/com/jg/common/xss/Xss.class b/target/classes/com/jg/common/xss/Xss.class deleted file mode 100644 index e19baaf..0000000 Binary files a/target/classes/com/jg/common/xss/Xss.class and /dev/null differ diff --git a/target/classes/com/jg/common/xss/XssValidator.class b/target/classes/com/jg/common/xss/XssValidator.class deleted file mode 100644 index 4a0a187..0000000 Binary files a/target/classes/com/jg/common/xss/XssValidator.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/DataScopeAspect.class b/target/classes/com/jg/framework/aspectj/DataScopeAspect.class deleted file mode 100644 index abf1f16..0000000 Binary files a/target/classes/com/jg/framework/aspectj/DataScopeAspect.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/DataSourceAspect.class b/target/classes/com/jg/framework/aspectj/DataSourceAspect.class deleted file mode 100644 index 85e5c86..0000000 Binary files a/target/classes/com/jg/framework/aspectj/DataSourceAspect.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/LogAspect.class b/target/classes/com/jg/framework/aspectj/LogAspect.class deleted file mode 100644 index ce69b06..0000000 Binary files a/target/classes/com/jg/framework/aspectj/LogAspect.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/RateLimiterAspect.class b/target/classes/com/jg/framework/aspectj/RateLimiterAspect.class deleted file mode 100644 index 2cf7caf..0000000 Binary files a/target/classes/com/jg/framework/aspectj/RateLimiterAspect.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/annotation/Anonymous.class b/target/classes/com/jg/framework/aspectj/lang/annotation/Anonymous.class deleted file mode 100644 index f6d8b00..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/annotation/Anonymous.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/annotation/DataScope.class b/target/classes/com/jg/framework/aspectj/lang/annotation/DataScope.class deleted file mode 100644 index 836df7e..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/annotation/DataScope.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/annotation/DataSource.class b/target/classes/com/jg/framework/aspectj/lang/annotation/DataSource.class deleted file mode 100644 index 3006ae5..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/annotation/DataSource.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/annotation/Excel$ColumnType.class b/target/classes/com/jg/framework/aspectj/lang/annotation/Excel$ColumnType.class deleted file mode 100644 index 2cd7bc4..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/annotation/Excel$ColumnType.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/annotation/Excel$Type.class b/target/classes/com/jg/framework/aspectj/lang/annotation/Excel$Type.class deleted file mode 100644 index 1a0c058..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/annotation/Excel$Type.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/annotation/Excel.class b/target/classes/com/jg/framework/aspectj/lang/annotation/Excel.class deleted file mode 100644 index 8d11c94..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/annotation/Excel.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/annotation/Excels.class b/target/classes/com/jg/framework/aspectj/lang/annotation/Excels.class deleted file mode 100644 index dc1c0dd..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/annotation/Excels.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/annotation/Log.class b/target/classes/com/jg/framework/aspectj/lang/annotation/Log.class deleted file mode 100644 index f6f05df..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/annotation/Log.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/annotation/RateLimiter.class b/target/classes/com/jg/framework/aspectj/lang/annotation/RateLimiter.class deleted file mode 100644 index 436d69e..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/annotation/RateLimiter.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/enums/BusinessStatus.class b/target/classes/com/jg/framework/aspectj/lang/enums/BusinessStatus.class deleted file mode 100644 index ffb1615..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/enums/BusinessStatus.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/enums/BusinessType.class b/target/classes/com/jg/framework/aspectj/lang/enums/BusinessType.class deleted file mode 100644 index 1a22dde..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/enums/BusinessType.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/enums/DataSourceType.class b/target/classes/com/jg/framework/aspectj/lang/enums/DataSourceType.class deleted file mode 100644 index 5583fe2..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/enums/DataSourceType.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/enums/LimitType.class b/target/classes/com/jg/framework/aspectj/lang/enums/LimitType.class deleted file mode 100644 index 720eb89..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/enums/LimitType.class and /dev/null differ diff --git a/target/classes/com/jg/framework/aspectj/lang/enums/OperatorType.class b/target/classes/com/jg/framework/aspectj/lang/enums/OperatorType.class deleted file mode 100644 index 62fa929..0000000 Binary files a/target/classes/com/jg/framework/aspectj/lang/enums/OperatorType.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/ApplicationConfig.class b/target/classes/com/jg/framework/config/ApplicationConfig.class deleted file mode 100644 index c294375..0000000 Binary files a/target/classes/com/jg/framework/config/ApplicationConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/CaptchaConfig.class b/target/classes/com/jg/framework/config/CaptchaConfig.class deleted file mode 100644 index e4f1d80..0000000 Binary files a/target/classes/com/jg/framework/config/CaptchaConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/DruidConfig$1.class b/target/classes/com/jg/framework/config/DruidConfig$1.class deleted file mode 100644 index ec49ab5..0000000 Binary files a/target/classes/com/jg/framework/config/DruidConfig$1.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/DruidConfig.class b/target/classes/com/jg/framework/config/DruidConfig.class deleted file mode 100644 index 1d099cc..0000000 Binary files a/target/classes/com/jg/framework/config/DruidConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/FastJson2JsonRedisSerializer.class b/target/classes/com/jg/framework/config/FastJson2JsonRedisSerializer.class deleted file mode 100644 index 1b29813..0000000 Binary files a/target/classes/com/jg/framework/config/FastJson2JsonRedisSerializer.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/FilterConfig.class b/target/classes/com/jg/framework/config/FilterConfig.class deleted file mode 100644 index 3ff7841..0000000 Binary files a/target/classes/com/jg/framework/config/FilterConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/GenConfig.class b/target/classes/com/jg/framework/config/GenConfig.class deleted file mode 100644 index ea4cfdd..0000000 Binary files a/target/classes/com/jg/framework/config/GenConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/I18nConfig.class b/target/classes/com/jg/framework/config/I18nConfig.class deleted file mode 100644 index b85f216..0000000 Binary files a/target/classes/com/jg/framework/config/I18nConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/JGConfig.class b/target/classes/com/jg/framework/config/JGConfig.class deleted file mode 100644 index 9ccf91e..0000000 Binary files a/target/classes/com/jg/framework/config/JGConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/KaptchaTextCreator.class b/target/classes/com/jg/framework/config/KaptchaTextCreator.class deleted file mode 100644 index 130b6af..0000000 Binary files a/target/classes/com/jg/framework/config/KaptchaTextCreator.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/MybatisPlusConfig.class b/target/classes/com/jg/framework/config/MybatisPlusConfig.class deleted file mode 100644 index fbb42a1..0000000 Binary files a/target/classes/com/jg/framework/config/MybatisPlusConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/RedisConfig.class b/target/classes/com/jg/framework/config/RedisConfig.class deleted file mode 100644 index 6374b21..0000000 Binary files a/target/classes/com/jg/framework/config/RedisConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/ResourcesConfig.class b/target/classes/com/jg/framework/config/ResourcesConfig.class deleted file mode 100644 index eea1100..0000000 Binary files a/target/classes/com/jg/framework/config/ResourcesConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/SecurityConfig.class b/target/classes/com/jg/framework/config/SecurityConfig.class deleted file mode 100644 index b94630c..0000000 Binary files a/target/classes/com/jg/framework/config/SecurityConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/ServerConfig.class b/target/classes/com/jg/framework/config/ServerConfig.class deleted file mode 100644 index 4ce798b..0000000 Binary files a/target/classes/com/jg/framework/config/ServerConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/SwaggerConfig.class b/target/classes/com/jg/framework/config/SwaggerConfig.class deleted file mode 100644 index a976879..0000000 Binary files a/target/classes/com/jg/framework/config/SwaggerConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/ThreadPoolConfig$1.class b/target/classes/com/jg/framework/config/ThreadPoolConfig$1.class deleted file mode 100644 index 09e7f1a..0000000 Binary files a/target/classes/com/jg/framework/config/ThreadPoolConfig$1.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/ThreadPoolConfig.class b/target/classes/com/jg/framework/config/ThreadPoolConfig.class deleted file mode 100644 index 66be423..0000000 Binary files a/target/classes/com/jg/framework/config/ThreadPoolConfig.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/properties/DruidProperties.class b/target/classes/com/jg/framework/config/properties/DruidProperties.class deleted file mode 100644 index 1d75a2e..0000000 Binary files a/target/classes/com/jg/framework/config/properties/DruidProperties.class and /dev/null differ diff --git a/target/classes/com/jg/framework/config/properties/PermitAllUrlProperties.class b/target/classes/com/jg/framework/config/properties/PermitAllUrlProperties.class deleted file mode 100644 index 2b54ba0..0000000 Binary files a/target/classes/com/jg/framework/config/properties/PermitAllUrlProperties.class and /dev/null differ diff --git a/target/classes/com/jg/framework/datasource/DynamicDataSource.class b/target/classes/com/jg/framework/datasource/DynamicDataSource.class deleted file mode 100644 index 3310c74..0000000 Binary files a/target/classes/com/jg/framework/datasource/DynamicDataSource.class and /dev/null differ diff --git a/target/classes/com/jg/framework/datasource/DynamicDataSourceContextHolder.class b/target/classes/com/jg/framework/datasource/DynamicDataSourceContextHolder.class deleted file mode 100644 index da04db7..0000000 Binary files a/target/classes/com/jg/framework/datasource/DynamicDataSourceContextHolder.class and /dev/null differ diff --git a/target/classes/com/jg/framework/interceptor/RepeatSubmitInterceptor.class b/target/classes/com/jg/framework/interceptor/RepeatSubmitInterceptor.class deleted file mode 100644 index 0a07e25..0000000 Binary files a/target/classes/com/jg/framework/interceptor/RepeatSubmitInterceptor.class and /dev/null differ diff --git a/target/classes/com/jg/framework/interceptor/annotation/RepeatSubmit.class b/target/classes/com/jg/framework/interceptor/annotation/RepeatSubmit.class deleted file mode 100644 index 8eb0698..0000000 Binary files a/target/classes/com/jg/framework/interceptor/annotation/RepeatSubmit.class and /dev/null differ diff --git a/target/classes/com/jg/framework/interceptor/impl/SameUrlDataInterceptor.class b/target/classes/com/jg/framework/interceptor/impl/SameUrlDataInterceptor.class deleted file mode 100644 index b7a454c..0000000 Binary files a/target/classes/com/jg/framework/interceptor/impl/SameUrlDataInterceptor.class and /dev/null differ diff --git a/target/classes/com/jg/framework/manager/AsyncManager.class b/target/classes/com/jg/framework/manager/AsyncManager.class deleted file mode 100644 index c0a24cd..0000000 Binary files a/target/classes/com/jg/framework/manager/AsyncManager.class and /dev/null differ diff --git a/target/classes/com/jg/framework/manager/ShutdownManager.class b/target/classes/com/jg/framework/manager/ShutdownManager.class deleted file mode 100644 index 41d8e7d..0000000 Binary files a/target/classes/com/jg/framework/manager/ShutdownManager.class and /dev/null differ diff --git a/target/classes/com/jg/framework/manager/factory/AsyncFactory$1.class b/target/classes/com/jg/framework/manager/factory/AsyncFactory$1.class deleted file mode 100644 index 7f303be..0000000 Binary files a/target/classes/com/jg/framework/manager/factory/AsyncFactory$1.class and /dev/null differ diff --git a/target/classes/com/jg/framework/manager/factory/AsyncFactory$2.class b/target/classes/com/jg/framework/manager/factory/AsyncFactory$2.class deleted file mode 100644 index a0bafa5..0000000 Binary files a/target/classes/com/jg/framework/manager/factory/AsyncFactory$2.class and /dev/null differ diff --git a/target/classes/com/jg/framework/manager/factory/AsyncFactory.class b/target/classes/com/jg/framework/manager/factory/AsyncFactory.class deleted file mode 100644 index df638a8..0000000 Binary files a/target/classes/com/jg/framework/manager/factory/AsyncFactory.class and /dev/null differ diff --git a/target/classes/com/jg/framework/redis/RedisCache.class b/target/classes/com/jg/framework/redis/RedisCache.class deleted file mode 100644 index 4674d39..0000000 Binary files a/target/classes/com/jg/framework/redis/RedisCache.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/LoginBody.class b/target/classes/com/jg/framework/security/LoginBody.class deleted file mode 100644 index e740c4b..0000000 Binary files a/target/classes/com/jg/framework/security/LoginBody.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/LoginUser.class b/target/classes/com/jg/framework/security/LoginUser.class deleted file mode 100644 index a75e939..0000000 Binary files a/target/classes/com/jg/framework/security/LoginUser.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/RegisterBody.class b/target/classes/com/jg/framework/security/RegisterBody.class deleted file mode 100644 index 261798b..0000000 Binary files a/target/classes/com/jg/framework/security/RegisterBody.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/context/AuthenticationContextHolder.class b/target/classes/com/jg/framework/security/context/AuthenticationContextHolder.class deleted file mode 100644 index 5a0b0e2..0000000 Binary files a/target/classes/com/jg/framework/security/context/AuthenticationContextHolder.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/context/PermissionContextHolder.class b/target/classes/com/jg/framework/security/context/PermissionContextHolder.class deleted file mode 100644 index 92b9988..0000000 Binary files a/target/classes/com/jg/framework/security/context/PermissionContextHolder.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/filter/JwtAuthenticationTokenFilter.class b/target/classes/com/jg/framework/security/filter/JwtAuthenticationTokenFilter.class deleted file mode 100644 index 6b6669b..0000000 Binary files a/target/classes/com/jg/framework/security/filter/JwtAuthenticationTokenFilter.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/handle/AuthenticationEntryPointImpl.class b/target/classes/com/jg/framework/security/handle/AuthenticationEntryPointImpl.class deleted file mode 100644 index a38f7ad..0000000 Binary files a/target/classes/com/jg/framework/security/handle/AuthenticationEntryPointImpl.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/handle/LogoutSuccessHandlerImpl.class b/target/classes/com/jg/framework/security/handle/LogoutSuccessHandlerImpl.class deleted file mode 100644 index 33dbdbd..0000000 Binary files a/target/classes/com/jg/framework/security/handle/LogoutSuccessHandlerImpl.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/service/PermissionService.class b/target/classes/com/jg/framework/security/service/PermissionService.class deleted file mode 100644 index b6cbc4a..0000000 Binary files a/target/classes/com/jg/framework/security/service/PermissionService.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/service/SysLoginService.class b/target/classes/com/jg/framework/security/service/SysLoginService.class deleted file mode 100644 index 74341f3..0000000 Binary files a/target/classes/com/jg/framework/security/service/SysLoginService.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/service/SysPasswordService.class b/target/classes/com/jg/framework/security/service/SysPasswordService.class deleted file mode 100644 index 9c00e9d..0000000 Binary files a/target/classes/com/jg/framework/security/service/SysPasswordService.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/service/SysPermissionService.class b/target/classes/com/jg/framework/security/service/SysPermissionService.class deleted file mode 100644 index fbb8243..0000000 Binary files a/target/classes/com/jg/framework/security/service/SysPermissionService.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/service/SysRegisterService.class b/target/classes/com/jg/framework/security/service/SysRegisterService.class deleted file mode 100644 index 159e5b8..0000000 Binary files a/target/classes/com/jg/framework/security/service/SysRegisterService.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/service/TokenService.class b/target/classes/com/jg/framework/security/service/TokenService.class deleted file mode 100644 index f7f6a50..0000000 Binary files a/target/classes/com/jg/framework/security/service/TokenService.class and /dev/null differ diff --git a/target/classes/com/jg/framework/security/service/UserDetailsServiceImpl.class b/target/classes/com/jg/framework/security/service/UserDetailsServiceImpl.class deleted file mode 100644 index 4d1a427..0000000 Binary files a/target/classes/com/jg/framework/security/service/UserDetailsServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/framework/task/RyTask.class b/target/classes/com/jg/framework/task/RyTask.class deleted file mode 100644 index 87a34ac..0000000 Binary files a/target/classes/com/jg/framework/task/RyTask.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/controller/BaseController$1.class b/target/classes/com/jg/framework/web/controller/BaseController$1.class deleted file mode 100644 index 7a46cee..0000000 Binary files a/target/classes/com/jg/framework/web/controller/BaseController$1.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/controller/BaseController.class b/target/classes/com/jg/framework/web/controller/BaseController.class deleted file mode 100644 index 38d1745..0000000 Binary files a/target/classes/com/jg/framework/web/controller/BaseController.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/domain/AjaxResult.class b/target/classes/com/jg/framework/web/domain/AjaxResult.class deleted file mode 100644 index d259674..0000000 Binary files a/target/classes/com/jg/framework/web/domain/AjaxResult.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/domain/BaseEntity.class b/target/classes/com/jg/framework/web/domain/BaseEntity.class deleted file mode 100644 index 71e24e7..0000000 Binary files a/target/classes/com/jg/framework/web/domain/BaseEntity.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/domain/R.class b/target/classes/com/jg/framework/web/domain/R.class deleted file mode 100644 index 9c08eac..0000000 Binary files a/target/classes/com/jg/framework/web/domain/R.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/domain/Server.class b/target/classes/com/jg/framework/web/domain/Server.class deleted file mode 100644 index a2d2b75..0000000 Binary files a/target/classes/com/jg/framework/web/domain/Server.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/domain/TreeEntity.class b/target/classes/com/jg/framework/web/domain/TreeEntity.class deleted file mode 100644 index efa39ee..0000000 Binary files a/target/classes/com/jg/framework/web/domain/TreeEntity.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/domain/TreeSelect.class b/target/classes/com/jg/framework/web/domain/TreeSelect.class deleted file mode 100644 index 2ec49d1..0000000 Binary files a/target/classes/com/jg/framework/web/domain/TreeSelect.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/domain/server/Cpu.class b/target/classes/com/jg/framework/web/domain/server/Cpu.class deleted file mode 100644 index 80eee79..0000000 Binary files a/target/classes/com/jg/framework/web/domain/server/Cpu.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/domain/server/Jvm.class b/target/classes/com/jg/framework/web/domain/server/Jvm.class deleted file mode 100644 index 32b5345..0000000 Binary files a/target/classes/com/jg/framework/web/domain/server/Jvm.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/domain/server/Mem.class b/target/classes/com/jg/framework/web/domain/server/Mem.class deleted file mode 100644 index 23808f3..0000000 Binary files a/target/classes/com/jg/framework/web/domain/server/Mem.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/domain/server/Sys.class b/target/classes/com/jg/framework/web/domain/server/Sys.class deleted file mode 100644 index 5ea5afd..0000000 Binary files a/target/classes/com/jg/framework/web/domain/server/Sys.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/domain/server/SysFile.class b/target/classes/com/jg/framework/web/domain/server/SysFile.class deleted file mode 100644 index e287c2b..0000000 Binary files a/target/classes/com/jg/framework/web/domain/server/SysFile.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/exception/GlobalExceptionHandler.class b/target/classes/com/jg/framework/web/exception/GlobalExceptionHandler.class deleted file mode 100644 index 52474db..0000000 Binary files a/target/classes/com/jg/framework/web/exception/GlobalExceptionHandler.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/page/PageDomain.class b/target/classes/com/jg/framework/web/page/PageDomain.class deleted file mode 100644 index 521df3a..0000000 Binary files a/target/classes/com/jg/framework/web/page/PageDomain.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/page/TableDataInfo.class b/target/classes/com/jg/framework/web/page/TableDataInfo.class deleted file mode 100644 index f99cb39..0000000 Binary files a/target/classes/com/jg/framework/web/page/TableDataInfo.class and /dev/null differ diff --git a/target/classes/com/jg/framework/web/page/TableSupport.class b/target/classes/com/jg/framework/web/page/TableSupport.class deleted file mode 100644 index 03c27ca..0000000 Binary files a/target/classes/com/jg/framework/web/page/TableSupport.class and /dev/null differ diff --git a/target/classes/com/jg/project/common/CaptchaController.class b/target/classes/com/jg/project/common/CaptchaController.class deleted file mode 100644 index c6978c8..0000000 Binary files a/target/classes/com/jg/project/common/CaptchaController.class and /dev/null differ diff --git a/target/classes/com/jg/project/common/CommonController.class b/target/classes/com/jg/project/common/CommonController.class deleted file mode 100644 index 959c244..0000000 Binary files a/target/classes/com/jg/project/common/CommonController.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/controller/CacheController.class b/target/classes/com/jg/project/monitor/controller/CacheController.class deleted file mode 100644 index 37bf234..0000000 Binary files a/target/classes/com/jg/project/monitor/controller/CacheController.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/controller/ServerController.class b/target/classes/com/jg/project/monitor/controller/ServerController.class deleted file mode 100644 index 3526612..0000000 Binary files a/target/classes/com/jg/project/monitor/controller/ServerController.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/controller/SysJobController.class b/target/classes/com/jg/project/monitor/controller/SysJobController.class deleted file mode 100644 index 7f5895c..0000000 Binary files a/target/classes/com/jg/project/monitor/controller/SysJobController.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/controller/SysJobLogController.class b/target/classes/com/jg/project/monitor/controller/SysJobLogController.class deleted file mode 100644 index 7e35601..0000000 Binary files a/target/classes/com/jg/project/monitor/controller/SysJobLogController.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/controller/SysLogininforController.class b/target/classes/com/jg/project/monitor/controller/SysLogininforController.class deleted file mode 100644 index 6f434f4..0000000 Binary files a/target/classes/com/jg/project/monitor/controller/SysLogininforController.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/controller/SysOperlogController.class b/target/classes/com/jg/project/monitor/controller/SysOperlogController.class deleted file mode 100644 index ecfd1b6..0000000 Binary files a/target/classes/com/jg/project/monitor/controller/SysOperlogController.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/controller/SysUserOnlineController.class b/target/classes/com/jg/project/monitor/controller/SysUserOnlineController.class deleted file mode 100644 index b42a349..0000000 Binary files a/target/classes/com/jg/project/monitor/controller/SysUserOnlineController.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/domain/SysCache.class b/target/classes/com/jg/project/monitor/domain/SysCache.class deleted file mode 100644 index dcddf85..0000000 Binary files a/target/classes/com/jg/project/monitor/domain/SysCache.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/domain/SysJob.class b/target/classes/com/jg/project/monitor/domain/SysJob.class deleted file mode 100644 index 1bd4418..0000000 Binary files a/target/classes/com/jg/project/monitor/domain/SysJob.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/domain/SysJobLog.class b/target/classes/com/jg/project/monitor/domain/SysJobLog.class deleted file mode 100644 index e8afc55..0000000 Binary files a/target/classes/com/jg/project/monitor/domain/SysJobLog.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/domain/SysLogininfor.class b/target/classes/com/jg/project/monitor/domain/SysLogininfor.class deleted file mode 100644 index 65988bb..0000000 Binary files a/target/classes/com/jg/project/monitor/domain/SysLogininfor.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/domain/SysOperLog.class b/target/classes/com/jg/project/monitor/domain/SysOperLog.class deleted file mode 100644 index e1b15a9..0000000 Binary files a/target/classes/com/jg/project/monitor/domain/SysOperLog.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/domain/SysUserOnline.class b/target/classes/com/jg/project/monitor/domain/SysUserOnline.class deleted file mode 100644 index 0046d60..0000000 Binary files a/target/classes/com/jg/project/monitor/domain/SysUserOnline.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/mapper/SysJobLogMapper.class b/target/classes/com/jg/project/monitor/mapper/SysJobLogMapper.class deleted file mode 100644 index bac68f2..0000000 Binary files a/target/classes/com/jg/project/monitor/mapper/SysJobLogMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/mapper/SysJobMapper.class b/target/classes/com/jg/project/monitor/mapper/SysJobMapper.class deleted file mode 100644 index 71482f5..0000000 Binary files a/target/classes/com/jg/project/monitor/mapper/SysJobMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/mapper/SysLogininforMapper.class b/target/classes/com/jg/project/monitor/mapper/SysLogininforMapper.class deleted file mode 100644 index 3acd89a..0000000 Binary files a/target/classes/com/jg/project/monitor/mapper/SysLogininforMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/mapper/SysOperLogMapper.class b/target/classes/com/jg/project/monitor/mapper/SysOperLogMapper.class deleted file mode 100644 index 398f02d..0000000 Binary files a/target/classes/com/jg/project/monitor/mapper/SysOperLogMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/service/ISysJobLogService.class b/target/classes/com/jg/project/monitor/service/ISysJobLogService.class deleted file mode 100644 index 89a787e..0000000 Binary files a/target/classes/com/jg/project/monitor/service/ISysJobLogService.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/service/ISysJobService.class b/target/classes/com/jg/project/monitor/service/ISysJobService.class deleted file mode 100644 index 70cb636..0000000 Binary files a/target/classes/com/jg/project/monitor/service/ISysJobService.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/service/ISysLogininforService.class b/target/classes/com/jg/project/monitor/service/ISysLogininforService.class deleted file mode 100644 index a3a9bf6..0000000 Binary files a/target/classes/com/jg/project/monitor/service/ISysLogininforService.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/service/ISysOperLogService.class b/target/classes/com/jg/project/monitor/service/ISysOperLogService.class deleted file mode 100644 index a9acd96..0000000 Binary files a/target/classes/com/jg/project/monitor/service/ISysOperLogService.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/service/impl/SysJobLogServiceImpl.class b/target/classes/com/jg/project/monitor/service/impl/SysJobLogServiceImpl.class deleted file mode 100644 index 8ff942b..0000000 Binary files a/target/classes/com/jg/project/monitor/service/impl/SysJobLogServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/service/impl/SysJobServiceImpl.class b/target/classes/com/jg/project/monitor/service/impl/SysJobServiceImpl.class deleted file mode 100644 index ff12a2a..0000000 Binary files a/target/classes/com/jg/project/monitor/service/impl/SysJobServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/service/impl/SysLogininforServiceImpl.class b/target/classes/com/jg/project/monitor/service/impl/SysLogininforServiceImpl.class deleted file mode 100644 index 94db8d4..0000000 Binary files a/target/classes/com/jg/project/monitor/service/impl/SysLogininforServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/monitor/service/impl/SysOperLogServiceImpl.class b/target/classes/com/jg/project/monitor/service/impl/SysOperLogServiceImpl.class deleted file mode 100644 index 567f1d9..0000000 Binary files a/target/classes/com/jg/project/monitor/service/impl/SysOperLogServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysConfigController.class b/target/classes/com/jg/project/system/controller/SysConfigController.class deleted file mode 100644 index 15706f7..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysConfigController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysDeptController.class b/target/classes/com/jg/project/system/controller/SysDeptController.class deleted file mode 100644 index 5e5b514..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysDeptController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysDictDataController.class b/target/classes/com/jg/project/system/controller/SysDictDataController.class deleted file mode 100644 index a7f360d..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysDictDataController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysDictTypeController.class b/target/classes/com/jg/project/system/controller/SysDictTypeController.class deleted file mode 100644 index c256da9..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysDictTypeController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysIndexController.class b/target/classes/com/jg/project/system/controller/SysIndexController.class deleted file mode 100644 index 1a9b307..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysIndexController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysLoginController.class b/target/classes/com/jg/project/system/controller/SysLoginController.class deleted file mode 100644 index 7535aa6..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysLoginController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysMenuController.class b/target/classes/com/jg/project/system/controller/SysMenuController.class deleted file mode 100644 index d4ac61f..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysMenuController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysNoticeController.class b/target/classes/com/jg/project/system/controller/SysNoticeController.class deleted file mode 100644 index 13a6aed..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysNoticeController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysPostController.class b/target/classes/com/jg/project/system/controller/SysPostController.class deleted file mode 100644 index 203c68c..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysPostController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysProfileController.class b/target/classes/com/jg/project/system/controller/SysProfileController.class deleted file mode 100644 index e50a4b6..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysProfileController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysRegisterController.class b/target/classes/com/jg/project/system/controller/SysRegisterController.class deleted file mode 100644 index 81e9775..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysRegisterController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysRoleController.class b/target/classes/com/jg/project/system/controller/SysRoleController.class deleted file mode 100644 index 0721f7a..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysRoleController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/controller/SysUserController.class b/target/classes/com/jg/project/system/controller/SysUserController.class deleted file mode 100644 index e263e41..0000000 Binary files a/target/classes/com/jg/project/system/controller/SysUserController.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysConfig.class b/target/classes/com/jg/project/system/domain/SysConfig.class deleted file mode 100644 index a5c2f0d..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysConfig.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysDept.class b/target/classes/com/jg/project/system/domain/SysDept.class deleted file mode 100644 index f60396a..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysDept.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysDictData.class b/target/classes/com/jg/project/system/domain/SysDictData.class deleted file mode 100644 index 1a71f73..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysDictData.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysDictType.class b/target/classes/com/jg/project/system/domain/SysDictType.class deleted file mode 100644 index e2e4461..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysDictType.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysMenu.class b/target/classes/com/jg/project/system/domain/SysMenu.class deleted file mode 100644 index 5e8ded7..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysMenu.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysNotice.class b/target/classes/com/jg/project/system/domain/SysNotice.class deleted file mode 100644 index 3e9308c..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysNotice.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysPost.class b/target/classes/com/jg/project/system/domain/SysPost.class deleted file mode 100644 index d22c92c..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysPost.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysRole.class b/target/classes/com/jg/project/system/domain/SysRole.class deleted file mode 100644 index 83cd16a..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysRole.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysRoleDept.class b/target/classes/com/jg/project/system/domain/SysRoleDept.class deleted file mode 100644 index 42860b7..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysRoleDept.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysRoleMenu.class b/target/classes/com/jg/project/system/domain/SysRoleMenu.class deleted file mode 100644 index 34a595a..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysRoleMenu.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysUser.class b/target/classes/com/jg/project/system/domain/SysUser.class deleted file mode 100644 index e6b0f0a..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysUser.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysUserPost.class b/target/classes/com/jg/project/system/domain/SysUserPost.class deleted file mode 100644 index ba9049a..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysUserPost.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/SysUserRole.class b/target/classes/com/jg/project/system/domain/SysUserRole.class deleted file mode 100644 index bce26b5..0000000 Binary files a/target/classes/com/jg/project/system/domain/SysUserRole.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/vo/MetaVo.class b/target/classes/com/jg/project/system/domain/vo/MetaVo.class deleted file mode 100644 index 260cdfe..0000000 Binary files a/target/classes/com/jg/project/system/domain/vo/MetaVo.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/domain/vo/RouterVo.class b/target/classes/com/jg/project/system/domain/vo/RouterVo.class deleted file mode 100644 index c1b6665..0000000 Binary files a/target/classes/com/jg/project/system/domain/vo/RouterVo.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysConfigMapper.class b/target/classes/com/jg/project/system/mapper/SysConfigMapper.class deleted file mode 100644 index 5b8773b..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysConfigMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysDeptMapper.class b/target/classes/com/jg/project/system/mapper/SysDeptMapper.class deleted file mode 100644 index 7d83f66..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysDeptMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysDictDataMapper.class b/target/classes/com/jg/project/system/mapper/SysDictDataMapper.class deleted file mode 100644 index 0ca21df..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysDictDataMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysDictTypeMapper.class b/target/classes/com/jg/project/system/mapper/SysDictTypeMapper.class deleted file mode 100644 index dc2ed62..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysDictTypeMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysMenuMapper.class b/target/classes/com/jg/project/system/mapper/SysMenuMapper.class deleted file mode 100644 index 379b8ef..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysMenuMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysNoticeMapper.class b/target/classes/com/jg/project/system/mapper/SysNoticeMapper.class deleted file mode 100644 index 15e2235..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysNoticeMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysPostMapper.class b/target/classes/com/jg/project/system/mapper/SysPostMapper.class deleted file mode 100644 index ce688eb..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysPostMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysRoleDeptMapper.class b/target/classes/com/jg/project/system/mapper/SysRoleDeptMapper.class deleted file mode 100644 index 6631752..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysRoleDeptMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysRoleMapper.class b/target/classes/com/jg/project/system/mapper/SysRoleMapper.class deleted file mode 100644 index 6e563d2..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysRoleMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysRoleMenuMapper.class b/target/classes/com/jg/project/system/mapper/SysRoleMenuMapper.class deleted file mode 100644 index 233b5a0..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysRoleMenuMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysUserMapper.class b/target/classes/com/jg/project/system/mapper/SysUserMapper.class deleted file mode 100644 index 328fbe3..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysUserMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysUserPostMapper.class b/target/classes/com/jg/project/system/mapper/SysUserPostMapper.class deleted file mode 100644 index 0a9b9bb..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysUserPostMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/mapper/SysUserRoleMapper.class b/target/classes/com/jg/project/system/mapper/SysUserRoleMapper.class deleted file mode 100644 index a870c10..0000000 Binary files a/target/classes/com/jg/project/system/mapper/SysUserRoleMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/ISysConfigService.class b/target/classes/com/jg/project/system/service/ISysConfigService.class deleted file mode 100644 index dace8b7..0000000 Binary files a/target/classes/com/jg/project/system/service/ISysConfigService.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/ISysDeptService.class b/target/classes/com/jg/project/system/service/ISysDeptService.class deleted file mode 100644 index cbb8a25..0000000 Binary files a/target/classes/com/jg/project/system/service/ISysDeptService.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/ISysDictDataService.class b/target/classes/com/jg/project/system/service/ISysDictDataService.class deleted file mode 100644 index 73c6b93..0000000 Binary files a/target/classes/com/jg/project/system/service/ISysDictDataService.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/ISysDictTypeService.class b/target/classes/com/jg/project/system/service/ISysDictTypeService.class deleted file mode 100644 index 0987a0b..0000000 Binary files a/target/classes/com/jg/project/system/service/ISysDictTypeService.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/ISysMenuService.class b/target/classes/com/jg/project/system/service/ISysMenuService.class deleted file mode 100644 index 475f242..0000000 Binary files a/target/classes/com/jg/project/system/service/ISysMenuService.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/ISysNoticeService.class b/target/classes/com/jg/project/system/service/ISysNoticeService.class deleted file mode 100644 index 4cedfa2..0000000 Binary files a/target/classes/com/jg/project/system/service/ISysNoticeService.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/ISysPostService.class b/target/classes/com/jg/project/system/service/ISysPostService.class deleted file mode 100644 index 304e67d..0000000 Binary files a/target/classes/com/jg/project/system/service/ISysPostService.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/ISysRoleService.class b/target/classes/com/jg/project/system/service/ISysRoleService.class deleted file mode 100644 index 3880e08..0000000 Binary files a/target/classes/com/jg/project/system/service/ISysRoleService.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/ISysUserOnlineService.class b/target/classes/com/jg/project/system/service/ISysUserOnlineService.class deleted file mode 100644 index 36f8842..0000000 Binary files a/target/classes/com/jg/project/system/service/ISysUserOnlineService.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/ISysUserService.class b/target/classes/com/jg/project/system/service/ISysUserService.class deleted file mode 100644 index e00ef34..0000000 Binary files a/target/classes/com/jg/project/system/service/ISysUserService.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/impl/SysConfigServiceImpl.class b/target/classes/com/jg/project/system/service/impl/SysConfigServiceImpl.class deleted file mode 100644 index 1f5f84a..0000000 Binary files a/target/classes/com/jg/project/system/service/impl/SysConfigServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/impl/SysDeptServiceImpl.class b/target/classes/com/jg/project/system/service/impl/SysDeptServiceImpl.class deleted file mode 100644 index 30f229a..0000000 Binary files a/target/classes/com/jg/project/system/service/impl/SysDeptServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/impl/SysDictDataServiceImpl.class b/target/classes/com/jg/project/system/service/impl/SysDictDataServiceImpl.class deleted file mode 100644 index dd8bb61..0000000 Binary files a/target/classes/com/jg/project/system/service/impl/SysDictDataServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/impl/SysDictTypeServiceImpl.class b/target/classes/com/jg/project/system/service/impl/SysDictTypeServiceImpl.class deleted file mode 100644 index 6f47bb8..0000000 Binary files a/target/classes/com/jg/project/system/service/impl/SysDictTypeServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/impl/SysMenuServiceImpl.class b/target/classes/com/jg/project/system/service/impl/SysMenuServiceImpl.class deleted file mode 100644 index 695d90a..0000000 Binary files a/target/classes/com/jg/project/system/service/impl/SysMenuServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/impl/SysNoticeServiceImpl.class b/target/classes/com/jg/project/system/service/impl/SysNoticeServiceImpl.class deleted file mode 100644 index bd101ab..0000000 Binary files a/target/classes/com/jg/project/system/service/impl/SysNoticeServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/impl/SysPostServiceImpl.class b/target/classes/com/jg/project/system/service/impl/SysPostServiceImpl.class deleted file mode 100644 index 803074c..0000000 Binary files a/target/classes/com/jg/project/system/service/impl/SysPostServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/impl/SysRoleServiceImpl.class b/target/classes/com/jg/project/system/service/impl/SysRoleServiceImpl.class deleted file mode 100644 index 4b36541..0000000 Binary files a/target/classes/com/jg/project/system/service/impl/SysRoleServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/impl/SysUserOnlineServiceImpl.class b/target/classes/com/jg/project/system/service/impl/SysUserOnlineServiceImpl.class deleted file mode 100644 index b50fc29..0000000 Binary files a/target/classes/com/jg/project/system/service/impl/SysUserOnlineServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/system/service/impl/SysUserServiceImpl.class b/target/classes/com/jg/project/system/service/impl/SysUserServiceImpl.class deleted file mode 100644 index e50ed2e..0000000 Binary files a/target/classes/com/jg/project/system/service/impl/SysUserServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/controller/GenController.class b/target/classes/com/jg/project/tool/gen/controller/GenController.class deleted file mode 100644 index febf2b5..0000000 Binary files a/target/classes/com/jg/project/tool/gen/controller/GenController.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/domain/GenTable.class b/target/classes/com/jg/project/tool/gen/domain/GenTable.class deleted file mode 100644 index 3f0c331..0000000 Binary files a/target/classes/com/jg/project/tool/gen/domain/GenTable.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/domain/GenTableColumn.class b/target/classes/com/jg/project/tool/gen/domain/GenTableColumn.class deleted file mode 100644 index 41babee..0000000 Binary files a/target/classes/com/jg/project/tool/gen/domain/GenTableColumn.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/mapper/GenTableColumnMapper.class b/target/classes/com/jg/project/tool/gen/mapper/GenTableColumnMapper.class deleted file mode 100644 index 4cd2a25..0000000 Binary files a/target/classes/com/jg/project/tool/gen/mapper/GenTableColumnMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/mapper/GenTableMapper.class b/target/classes/com/jg/project/tool/gen/mapper/GenTableMapper.class deleted file mode 100644 index 66b9299..0000000 Binary files a/target/classes/com/jg/project/tool/gen/mapper/GenTableMapper.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/service/GenTableColumnServiceImpl.class b/target/classes/com/jg/project/tool/gen/service/GenTableColumnServiceImpl.class deleted file mode 100644 index 2c0b54f..0000000 Binary files a/target/classes/com/jg/project/tool/gen/service/GenTableColumnServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/service/GenTableServiceImpl.class b/target/classes/com/jg/project/tool/gen/service/GenTableServiceImpl.class deleted file mode 100644 index 9ecd145..0000000 Binary files a/target/classes/com/jg/project/tool/gen/service/GenTableServiceImpl.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/service/IGenTableColumnService.class b/target/classes/com/jg/project/tool/gen/service/IGenTableColumnService.class deleted file mode 100644 index 9e5f665..0000000 Binary files a/target/classes/com/jg/project/tool/gen/service/IGenTableColumnService.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/service/IGenTableService.class b/target/classes/com/jg/project/tool/gen/service/IGenTableService.class deleted file mode 100644 index 1343a26..0000000 Binary files a/target/classes/com/jg/project/tool/gen/service/IGenTableService.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/util/GenUtils.class b/target/classes/com/jg/project/tool/gen/util/GenUtils.class deleted file mode 100644 index 663a9dc..0000000 Binary files a/target/classes/com/jg/project/tool/gen/util/GenUtils.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/util/VelocityInitializer.class b/target/classes/com/jg/project/tool/gen/util/VelocityInitializer.class deleted file mode 100644 index f7bf946..0000000 Binary files a/target/classes/com/jg/project/tool/gen/util/VelocityInitializer.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/gen/util/VelocityUtils.class b/target/classes/com/jg/project/tool/gen/util/VelocityUtils.class deleted file mode 100644 index 84db6d0..0000000 Binary files a/target/classes/com/jg/project/tool/gen/util/VelocityUtils.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/swagger/TestController.class b/target/classes/com/jg/project/tool/swagger/TestController.class deleted file mode 100644 index 9b98cb1..0000000 Binary files a/target/classes/com/jg/project/tool/swagger/TestController.class and /dev/null differ diff --git a/target/classes/com/jg/project/tool/swagger/UserEntity.class b/target/classes/com/jg/project/tool/swagger/UserEntity.class deleted file mode 100644 index b0e8d70..0000000 Binary files a/target/classes/com/jg/project/tool/swagger/UserEntity.class and /dev/null differ diff --git a/target/classes/i18n/messages.properties b/target/classes/i18n/messages.properties deleted file mode 100644 index 93de005..0000000 --- a/target/classes/i18n/messages.properties +++ /dev/null @@ -1,38 +0,0 @@ -#错误消息 -not.null=* 必须填写 -user.jcaptcha.error=验证码错误 -user.jcaptcha.expire=验证码已失效 -user.not.exists=用户不存在/密码错误 -user.password.not.match=用户不存在/密码错误 -user.password.retry.limit.count=密码输入错误{0}次 -user.password.retry.limit.exceed=密码输入错误{0}次,帐户锁定{1}分钟 -user.password.delete=对不起,您的账号已被删除 -user.blocked=用户已封禁,请联系管理员 -role.blocked=角色已封禁,请联系管理员 -login.blocked=很遗憾,访问IP已被列入系统黑名单 -user.logout.success=退出成功 - -length.not.valid=长度必须在{min}到{max}个字符之间 - -user.username.not.valid=* 2到20个汉字、字母、数字或下划线组成,且必须以非数字开头 -user.password.not.valid=* 5-50个字符 - -user.email.not.valid=邮箱格式错误 -user.mobile.phone.number.not.valid=手机号格式错误 -user.login.success=登录成功 -user.register.success=注册成功 -user.notfound=请重新登录 -user.forcelogout=管理员强制退出,请重新登录 -user.unknown.error=未知错误,请重新登录 - -##文件上传消息 -upload.exceed.maxSize=上传的文件大小超出限制的文件大小!
允许的文件最大大小是:{0}MB! -upload.filename.exceed.length=上传的文件名最长{0}个字符 - -##权限 -no.permission=您没有数据的权限,请联系管理员添加权限 [{0}] -no.create.permission=您没有创建数据的权限,请联系管理员添加权限 [{0}] -no.update.permission=您没有修改数据的权限,请联系管理员添加权限 [{0}] -no.delete.permission=您没有删除数据的权限,请联系管理员添加权限 [{0}] -no.export.permission=您没有导出数据的权限,请联系管理员添加权限 [{0}] -no.view.permission=您没有查看数据的权限,请联系管理员添加权限 [{0}] diff --git a/target/classes/logback.xml b/target/classes/logback.xml deleted file mode 100644 index 035100c..0000000 --- a/target/classes/logback.xml +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - ${log.pattern} - - - - - - ${log.path}/sys-info.log - - - - ${log.path}/sys-info.%d{yyyy-MM-dd}.log - - 60 - - - ${log.pattern} - - - - INFO - - ACCEPT - - DENY - - - - - ${log.path}/sys-error.log - - - - ${log.path}/sys-error.%d{yyyy-MM-dd}.log - - 60 - - - ${log.pattern} - - - - ERROR - - ACCEPT - - DENY - - - - - - ${log.path}/sys-user.log - - - ${log.path}/sys-user.%d{yyyy-MM-dd}.log - - 60 - - - ${log.pattern} - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/classes/mybatis/monitor/SysLogininforMapper.xml b/target/classes/mybatis/monitor/SysLogininforMapper.xml deleted file mode 100644 index e74d584..0000000 --- a/target/classes/mybatis/monitor/SysLogininforMapper.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - insert into sys_logininfor (user_name, status, ipaddr, login_location, browser, os, msg, login_time) - values (#{userName}, #{status}, #{ipaddr}, #{loginLocation}, #{browser}, #{os}, #{msg}, sysdate()) - - - - - - delete from sys_logininfor where info_id in - - #{infoId} - - - - - truncate table sys_logininfor - - - \ No newline at end of file diff --git a/target/classes/mybatis/monitor/SysOperLogMapper.xml b/target/classes/mybatis/monitor/SysOperLogMapper.xml deleted file mode 100644 index a4a7647..0000000 --- a/target/classes/mybatis/monitor/SysOperLogMapper.xml +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - select oper_id, title, business_type, method, request_method, operator_type, oper_name, dept_name, oper_url, oper_ip, oper_location, oper_param, json_result, status, error_msg, oper_time, cost_time - from sys_oper_log - - - - insert into sys_oper_log(title, business_type, method, request_method, operator_type, oper_name, dept_name, oper_url, oper_ip, oper_location, oper_param, json_result, status, error_msg, cost_time, oper_time) - values (#{title}, #{businessType}, #{method}, #{requestMethod}, #{operatorType}, #{operName}, #{deptName}, #{operUrl}, #{operIp}, #{operLocation}, #{operParam}, #{jsonResult}, #{status}, #{errorMsg}, #{costTime}, sysdate()) - - - - - - delete from sys_oper_log where oper_id in - - #{operId} - - - - - - - truncate table sys_oper_log - - - \ No newline at end of file diff --git a/target/classes/mybatis/mybatis-config.xml b/target/classes/mybatis/mybatis-config.xml deleted file mode 100644 index ac47c03..0000000 --- a/target/classes/mybatis/mybatis-config.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/target/classes/mybatis/system/SysConfigMapper.xml b/target/classes/mybatis/system/SysConfigMapper.xml deleted file mode 100644 index 75853ba..0000000 --- a/target/classes/mybatis/system/SysConfigMapper.xml +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - - - - - select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark - from sys_config - - - - - - - and config_id = #{configId} - - - and config_key = #{configKey} - - - - - - - - - - - - - - insert into sys_config ( - config_name, - config_key, - config_value, - config_type, - create_by, - remark, - create_time - )values( - #{configName}, - #{configKey}, - #{configValue}, - #{configType}, - #{createBy}, - #{remark}, - sysdate() - ) - - - - update sys_config - - config_name = #{configName}, - config_key = #{configKey}, - config_value = #{configValue}, - config_type = #{configType}, - update_by = #{updateBy}, - remark = #{remark}, - update_time = sysdate() - - where config_id = #{configId} - - - - delete from sys_config where config_id = #{configId} - - - - delete from sys_config where config_id in - - #{configId} - - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysDeptMapper.xml b/target/classes/mybatis/system/SysDeptMapper.xml deleted file mode 100644 index 2f2152e..0000000 --- a/target/classes/mybatis/system/SysDeptMapper.xml +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.phone, d.email, d.status, d.del_flag, d.create_by, d.create_time - from sys_dept d - - - - - - - - - - - - - - - - - - - - insert into sys_dept( - dept_id, - parent_id, - dept_name, - ancestors, - order_num, - leader, - phone, - email, - status, - create_by, - create_time - )values( - #{deptId}, - #{parentId}, - #{deptName}, - #{ancestors}, - #{orderNum}, - #{leader}, - #{phone}, - #{email}, - #{status}, - #{createBy}, - sysdate() - ) - - - - update sys_dept - - parent_id = #{parentId}, - dept_name = #{deptName}, - ancestors = #{ancestors}, - order_num = #{orderNum}, - leader = #{leader}, - phone = #{phone}, - email = #{email}, - status = #{status}, - update_by = #{updateBy}, - update_time = sysdate() - - where dept_id = #{deptId} - - - - update sys_dept set ancestors = - - when #{item.deptId} then #{item.ancestors} - - where dept_id in - - #{item.deptId} - - - - - update sys_dept set status = '0' where dept_id in - - #{deptId} - - - - - update sys_dept set del_flag = '2' where dept_id = #{deptId} - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysDictDataMapper.xml b/target/classes/mybatis/system/SysDictDataMapper.xml deleted file mode 100644 index 90d58c4..0000000 --- a/target/classes/mybatis/system/SysDictDataMapper.xml +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - select dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark - from sys_dict_data - - - - - - - - - - - - - - delete from sys_dict_data where dict_code = #{dictCode} - - - - delete from sys_dict_data where dict_code in - - #{dictCode} - - - - - update sys_dict_data - - dict_sort = #{dictSort}, - dict_label = #{dictLabel}, - dict_value = #{dictValue}, - dict_type = #{dictType}, - css_class = #{cssClass}, - list_class = #{listClass}, - is_default = #{isDefault}, - status = #{status}, - remark = #{remark}, - update_by = #{updateBy}, - update_time = sysdate() - - where dict_code = #{dictCode} - - - - update sys_dict_data set dict_type = #{newDictType} where dict_type = #{oldDictType} - - - - insert into sys_dict_data( - dict_sort, - dict_label, - dict_value, - dict_type, - css_class, - list_class, - is_default, - status, - remark, - create_by, - create_time - )values( - #{dictSort}, - #{dictLabel}, - #{dictValue}, - #{dictType}, - #{cssClass}, - #{listClass}, - #{isDefault}, - #{status}, - #{remark}, - #{createBy}, - sysdate() - ) - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysDictTypeMapper.xml b/target/classes/mybatis/system/SysDictTypeMapper.xml deleted file mode 100644 index f3ef37a..0000000 --- a/target/classes/mybatis/system/SysDictTypeMapper.xml +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - - - - - - select dict_id, dict_name, dict_type, status, create_by, create_time, remark - from sys_dict_type - - - - - - - - - - - - - - delete from sys_dict_type where dict_id = #{dictId} - - - - delete from sys_dict_type where dict_id in - - #{dictId} - - - - - update sys_dict_type - - dict_name = #{dictName}, - dict_type = #{dictType}, - status = #{status}, - remark = #{remark}, - update_by = #{updateBy}, - update_time = sysdate() - - where dict_id = #{dictId} - - - - insert into sys_dict_type( - dict_name, - dict_type, - status, - remark, - create_by, - create_time - )values( - #{dictName}, - #{dictType}, - #{status}, - #{remark}, - #{createBy}, - sysdate() - ) - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysJobLogMapper.xml b/target/classes/mybatis/system/SysJobLogMapper.xml deleted file mode 100644 index ccea00b..0000000 --- a/target/classes/mybatis/system/SysJobLogMapper.xml +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - - - - - - select job_log_id, job_name, job_group, invoke_target, job_message, status, exception_info, create_time - from sys_job_log - - - - - - - - - - delete from sys_job_log where job_log_id = #{jobLogId} - - - - delete from sys_job_log where job_log_id in - - #{jobLogId} - - - - - truncate table sys_job_log - - - - insert into sys_job_log( - job_log_id, - job_name, - job_group, - invoke_target, - job_message, - status, - exception_info, - create_time - )values( - #{jobLogId}, - #{jobName}, - #{jobGroup}, - #{invokeTarget}, - #{jobMessage}, - #{status}, - #{exceptionInfo}, - sysdate() - ) - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysJobMapper.xml b/target/classes/mybatis/system/SysJobMapper.xml deleted file mode 100644 index df90e43..0000000 --- a/target/classes/mybatis/system/SysJobMapper.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - select job_id, job_name, job_group, invoke_target, cron_expression, misfire_policy, concurrent, status, create_by, create_time, remark - from sys_job - - - - - - - - - - delete from sys_job where job_id = #{jobId} - - - - delete from sys_job where job_id in - - #{jobId} - - - - - update sys_job - - job_name = #{jobName}, - job_group = #{jobGroup}, - invoke_target = #{invokeTarget}, - cron_expression = #{cronExpression}, - misfire_policy = #{misfirePolicy}, - concurrent = #{concurrent}, - status = #{status}, - remark = #{remark}, - update_by = #{updateBy}, - update_time = sysdate() - - where job_id = #{jobId} - - - - insert into sys_job( - job_id, - job_name, - job_group, - invoke_target, - cron_expression, - misfire_policy, - concurrent, - status, - remark, - create_by, - create_time - )values( - #{jobId}, - #{jobName}, - #{jobGroup}, - #{invokeTarget}, - #{cronExpression}, - #{misfirePolicy}, - #{concurrent}, - #{status}, - #{remark}, - #{createBy}, - sysdate() - ) - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysMenuMapper.xml b/target/classes/mybatis/system/SysMenuMapper.xml deleted file mode 100644 index 50eb803..0000000 --- a/target/classes/mybatis/system/SysMenuMapper.xml +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - select menu_id, menu_name, parent_id, order_num, path, component, `query`, is_frame, is_cache, menu_type, visible, status, ifnull(perms,'') as perms, icon, create_time - from sys_menu - - - - - - - - - - - - - - - - - - - - - - - - - - update sys_menu - - menu_name = #{menuName}, - parent_id = #{parentId}, - order_num = #{orderNum}, - path = #{path}, - component = #{component}, - `query` = #{query}, - is_frame = #{isFrame}, - is_cache = #{isCache}, - menu_type = #{menuType}, - visible = #{visible}, - status = #{status}, - perms = #{perms}, - icon = #{icon}, - remark = #{remark}, - update_by = #{updateBy}, - update_time = sysdate() - - where menu_id = #{menuId} - - - - insert into sys_menu( - menu_id, - parent_id, - menu_name, - order_num, - path, - component, - `query`, - is_frame, - is_cache, - menu_type, - visible, - status, - perms, - icon, - remark, - create_by, - create_time - )values( - #{menuId}, - #{parentId}, - #{menuName}, - #{orderNum}, - #{path}, - #{component}, - #{query}, - #{isFrame}, - #{isCache}, - #{menuType}, - #{visible}, - #{status}, - #{perms}, - #{icon}, - #{remark}, - #{createBy}, - sysdate() - ) - - - - delete from sys_menu where menu_id = #{menuId} - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysNoticeMapper.xml b/target/classes/mybatis/system/SysNoticeMapper.xml deleted file mode 100644 index 2859d63..0000000 --- a/target/classes/mybatis/system/SysNoticeMapper.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - select notice_id, notice_title, notice_type, cast(notice_content as char) as notice_content, status, create_by, create_time, update_by, update_time, remark - from sys_notice - - - - - - - - insert into sys_notice ( - notice_title, - notice_type, - notice_content, - status, - remark, - create_by, - create_time - )values( - #{noticeTitle}, - #{noticeType}, - #{noticeContent}, - #{status}, - #{remark}, - #{createBy}, - sysdate() - ) - - - - update sys_notice - - notice_title = #{noticeTitle}, - notice_type = #{noticeType}, - notice_content = #{noticeContent}, - status = #{status}, - update_by = #{updateBy}, - update_time = sysdate() - - where notice_id = #{noticeId} - - - - delete from sys_notice where notice_id = #{noticeId} - - - - delete from sys_notice where notice_id in - - #{noticeId} - - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysPostMapper.xml b/target/classes/mybatis/system/SysPostMapper.xml deleted file mode 100644 index dc2291a..0000000 --- a/target/classes/mybatis/system/SysPostMapper.xml +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - - - - - - - - - - - - select post_id, post_code, post_name, post_sort, status, create_by, create_time, remark - from sys_post - - - - - - - - - - - - - - - - - - update sys_post - - post_code = #{postCode}, - post_name = #{postName}, - post_sort = #{postSort}, - status = #{status}, - remark = #{remark}, - update_by = #{updateBy}, - update_time = sysdate() - - where post_id = #{postId} - - - - insert into sys_post( - post_id, - post_code, - post_name, - post_sort, - status, - remark, - create_by, - create_time - )values( - #{postId}, - #{postCode}, - #{postName}, - #{postSort}, - #{status}, - #{remark}, - #{createBy}, - sysdate() - ) - - - - delete from sys_post where post_id = #{postId} - - - - delete from sys_post where post_id in - - #{postId} - - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysRoleDeptMapper.xml b/target/classes/mybatis/system/SysRoleDeptMapper.xml deleted file mode 100644 index f3eae7f..0000000 --- a/target/classes/mybatis/system/SysRoleDeptMapper.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - delete from sys_role_dept where role_id=#{roleId} - - - - - - delete from sys_role_dept where role_id in - - #{roleId} - - - - - insert into sys_role_dept(role_id, dept_id) values - - (#{item.roleId},#{item.deptId}) - - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysRoleMapper.xml b/target/classes/mybatis/system/SysRoleMapper.xml deleted file mode 100644 index 24c6563..0000000 --- a/target/classes/mybatis/system/SysRoleMapper.xml +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, - r.status, r.del_flag, r.create_time, r.remark - from sys_role r - left join sys_user_role ur on ur.role_id = r.role_id - left join sys_user u on u.user_id = ur.user_id - left join sys_dept d on u.dept_id = d.dept_id - - - - - - - - - - - - - - - - - - - - insert into sys_role( - role_id, - role_name, - role_key, - role_sort, - data_scope, - menu_check_strictly, - dept_check_strictly, - status, - remark, - create_by, - create_time - )values( - #{roleId}, - #{roleName}, - #{roleKey}, - #{roleSort}, - #{dataScope}, - #{menuCheckStrictly}, - #{deptCheckStrictly}, - #{status}, - #{remark}, - #{createBy}, - sysdate() - ) - - - - update sys_role - - role_name = #{roleName}, - role_key = #{roleKey}, - role_sort = #{roleSort}, - data_scope = #{dataScope}, - menu_check_strictly = #{menuCheckStrictly}, - dept_check_strictly = #{deptCheckStrictly}, - status = #{status}, - remark = #{remark}, - update_by = #{updateBy}, - update_time = sysdate() - - where role_id = #{roleId} - - - - update sys_role set del_flag = '2' where role_id = #{roleId} - - - - update sys_role set del_flag = '2' where role_id in - - #{roleId} - - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysRoleMenuMapper.xml b/target/classes/mybatis/system/SysRoleMenuMapper.xml deleted file mode 100644 index 775c0c9..0000000 --- a/target/classes/mybatis/system/SysRoleMenuMapper.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - delete from sys_role_menu where role_id=#{roleId} - - - - delete from sys_role_menu where role_id in - - #{roleId} - - - - - insert into sys_role_menu(role_id, menu_id) values - - (#{item.roleId},#{item.menuId}) - - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysUserMapper.xml b/target/classes/mybatis/system/SysUserMapper.xml deleted file mode 100644 index 1bf2c84..0000000 --- a/target/classes/mybatis/system/SysUserMapper.xml +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - - - - - - - - - - - - - - - - - - - insert into sys_user( - user_id, - dept_id, - user_name, - nick_name, - email, - avatar, - phonenumber, - sex, - password, - status, - create_by, - remark, - create_time - )values( - #{userId}, - #{deptId}, - #{userName}, - #{nickName}, - #{email}, - #{avatar}, - #{phonenumber}, - #{sex}, - #{password}, - #{status}, - #{createBy}, - #{remark}, - sysdate() - ) - - - - update sys_user - - dept_id = #{deptId}, - user_name = #{userName}, - nick_name = #{nickName}, - email = #{email}, - phonenumber = #{phonenumber}, - sex = #{sex}, - avatar = #{avatar}, - password = #{password}, - status = #{status}, - login_ip = #{loginIp}, - login_date = #{loginDate}, - update_by = #{updateBy}, - remark = #{remark}, - update_time = sysdate() - - where user_id = #{userId} - - - - update sys_user set status = #{status} where user_id = #{userId} - - - - update sys_user set avatar = #{avatar} where user_name = #{userName} - - - - update sys_user set password = #{password} where user_name = #{userName} - - - - update sys_user set del_flag = '2' where user_id = #{userId} - - - - update sys_user set del_flag = '2' where user_id in - - #{userId} - - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysUserPostMapper.xml b/target/classes/mybatis/system/SysUserPostMapper.xml deleted file mode 100644 index 89d29fe..0000000 --- a/target/classes/mybatis/system/SysUserPostMapper.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - delete from sys_user_post where user_id=#{userId} - - - - - - delete from sys_user_post where user_id in - - #{userId} - - - - - insert into sys_user_post(user_id, post_id) values - - (#{item.userId},#{item.postId}) - - - - \ No newline at end of file diff --git a/target/classes/mybatis/system/SysUserRoleMapper.xml b/target/classes/mybatis/system/SysUserRoleMapper.xml deleted file mode 100644 index 20c345b..0000000 --- a/target/classes/mybatis/system/SysUserRoleMapper.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - delete from sys_user_role where user_id=#{userId} - - - - - - delete from sys_user_role where user_id in - - #{userId} - - - - - insert into sys_user_role(user_id, role_id) values - - (#{item.userId},#{item.roleId}) - - - - - delete from sys_user_role where user_id=#{userId} and role_id=#{roleId} - - - - delete from sys_user_role where role_id=#{roleId} and user_id in - - #{userId} - - - \ No newline at end of file diff --git a/target/classes/mybatis/tool/GenTableColumnMapper.xml b/target/classes/mybatis/tool/GenTableColumnMapper.xml deleted file mode 100644 index 2ceb51e..0000000 --- a/target/classes/mybatis/tool/GenTableColumnMapper.xml +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - select column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time from gen_table_column - - - - - - - - insert into gen_table_column ( - table_id, - column_name, - column_comment, - column_type, - java_type, - java_field, - is_pk, - is_increment, - is_required, - is_insert, - is_edit, - is_list, - is_query, - query_type, - html_type, - dict_type, - sort, - create_by, - create_time - )values( - #{tableId}, - #{columnName}, - #{columnComment}, - #{columnType}, - #{javaType}, - #{javaField}, - #{isPk}, - #{isIncrement}, - #{isRequired}, - #{isInsert}, - #{isEdit}, - #{isList}, - #{isQuery}, - #{queryType}, - #{htmlType}, - #{dictType}, - #{sort}, - #{createBy}, - sysdate() - ) - - - - update gen_table_column - - column_comment = #{columnComment}, - java_type = #{javaType}, - java_field = #{javaField}, - is_insert = #{isInsert}, - is_edit = #{isEdit}, - is_list = #{isList}, - is_query = #{isQuery}, - is_required = #{isRequired}, - query_type = #{queryType}, - html_type = #{htmlType}, - dict_type = #{dictType}, - sort = #{sort}, - update_by = #{updateBy}, - update_time = sysdate() - - where column_id = #{columnId} - - - - delete from gen_table_column where table_id in - - #{tableId} - - - - - delete from gen_table_column where column_id in - - #{item.columnId} - - - - \ No newline at end of file diff --git a/target/classes/mybatis/tool/GenTableMapper.xml b/target/classes/mybatis/tool/GenTableMapper.xml deleted file mode 100644 index 02d229b..0000000 --- a/target/classes/mybatis/tool/GenTableMapper.xml +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - select table_id, table_name, table_comment, sub_table_name, sub_table_fk_name, class_name, tpl_category, tpl_web_type, package_name, module_name, business_name, function_name, function_author, gen_type, gen_path, options, create_by, create_time, update_by, update_time, remark from gen_table - - - - - - - - - - - - - - - - - - insert into gen_table ( - table_name, - table_comment, - class_name, - tpl_category, - tpl_web_type, - package_name, - module_name, - business_name, - function_name, - function_author, - gen_type, - gen_path, - remark, - create_by, - create_time - )values( - #{tableName}, - #{tableComment}, - #{className}, - #{tplCategory}, - #{tplWebType}, - #{packageName}, - #{moduleName}, - #{businessName}, - #{functionName}, - #{functionAuthor}, - #{genType}, - #{genPath}, - #{remark}, - #{createBy}, - sysdate() - ) - - - - ${sql} - - - - update gen_table - - table_name = #{tableName}, - table_comment = #{tableComment}, - sub_table_name = #{subTableName}, - sub_table_fk_name = #{subTableFkName}, - class_name = #{className}, - function_author = #{functionAuthor}, - gen_type = #{genType}, - gen_path = #{genPath}, - tpl_category = #{tplCategory}, - tpl_web_type = #{tplWebType}, - package_name = #{packageName}, - module_name = #{moduleName}, - business_name = #{businessName}, - function_name = #{functionName}, - options = #{options}, - update_by = #{updateBy}, - remark = #{remark}, - update_time = sysdate() - - where table_id = #{tableId} - - - - delete from gen_table where table_id in - - #{tableId} - - - - \ No newline at end of file diff --git a/target/classes/vm/java/controller.java.vm b/target/classes/vm/java/controller.java.vm deleted file mode 100644 index 5b31422..0000000 --- a/target/classes/vm/java/controller.java.vm +++ /dev/null @@ -1,119 +0,0 @@ -package ${packageName}.controller; -import java.util.List; -import javax.annotation.Resource; -import lombok.extern.slf4j.Slf4j; -import javax.servlet.http.HttpServletResponse; -import com.jg.framework.aspectj.lang.enums.BusinessType; -import io.swagger.annotations.Api; -import com.jg.common.utils.poi.ExcelUtil; -import io.swagger.annotations.ApiOperation; -import org.springframework.security.access.prepost.PreAuthorize; -import com.jg.common.utils.QueryPage; -import com.jg.framework.aspectj.lang.annotation.Log; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; -import com.jg.framework.web.controller.BaseController; -import ${packageName}.domain.${ClassName}; -import ${packageName}.service.I${ClassName}Service; -import com.jg.framework.web.domain.R; -#if($table.crud || $table.sub) -#elseif($table.tree) -#end - -/** - * ${functionName}Controller - * - * @author ${author} - * @date ${datetime} - */ -@Slf4j -@Api(tags = "${functionName}") -@RestController -@RequestMapping("/${moduleName}") -public class ${ClassName}Controller extends BaseController{ - - @Resource - private I${ClassName}Service ${className}Service; - - /** - * ${functionName}分页列表 - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:listPage')") - @ApiOperation(value = "${functionName}分页列表", notes = "${functionName}分页列表信息") - @PostMapping("/listPage") - public R listPage(QueryPage queryPage,${ClassName} ${className}) { - startPage(); - List<${ClassName}> list = ${className}Service.select${ClassName}List(${className}); - return R.page(queryPage.getPageNum(),queryPage.getPageSize(),list.size(),list); - } - /** - * ${functionName}列表 - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:list')") - @ApiOperation(value = "${functionName}列表", notes = "${functionName}列表信息") - @GetMapping("/list") - public R> list() { - List<${ClassName}> list = ${className}Service.list(); - return R.ok(list); - } - - /** - * ${functionName}id详细信息 - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:query')") - @ApiOperation(value = "${functionName}id详细信息", notes = "${functionName}id详细信息") - @GetMapping("/query") - public R<${ClassName}> query(Long id) { - ${ClassName} queryinfo = ${className}Service.getById(id); - return R.ok(queryinfo); - } - /** - * ${functionName}新增信息 - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:add')") - @ApiOperation(value = "${functionName}新增信息", notes = "${functionName}新增信息") - @Log(title = "${functionName}", businessType = BusinessType.INSERT) - @PostMapping("/add") - public R add(${ClassName} ${className}) { - boolean res = ${className}Service.save(${className}); - return R.ok(res); - } - /** - * ${functionName}修改信息 - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:edit')") - @ApiOperation(value = "${functionName}修改信息", notes = "${functionName}修改信息") - @Log(title = "${functionName}", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public R edit(${ClassName} ${className}) { - boolean res = ${className}Service.updateById(${className}); - return R.ok(res); - } - /** - * ${functionName}删除信息 - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:remove')") - @ApiOperation(value = "${functionName}删除信息", notes = "${functionName}删除信息") - @Log(title = "${functionName}", businessType = BusinessType.DELETE) - @PostMapping("/remove") - public R remove(Long id) { - boolean res = ${className}Service.removeById(id); - return R.ok(res); - } - - /** - * 导出${functionName}列表 - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:export')") - @ApiOperation(value = "${functionName}导出信息", notes = "${functionName}导出信息") - @Log(title = "${functionName}", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, ${ClassName} ${className}) - { - List<${ClassName}> list = ${className}Service.select${ClassName}List(${className}); - ExcelUtil<${ClassName}> util = new ExcelUtil<${ClassName}>(${ClassName}.class); - util.exportExcel(response, list, "${functionName}数据"); - } -} diff --git a/target/classes/vm/java/domain.java.vm b/target/classes/vm/java/domain.java.vm deleted file mode 100644 index 3c81e50..0000000 --- a/target/classes/vm/java/domain.java.vm +++ /dev/null @@ -1,69 +0,0 @@ -package ${packageName}.domain; - -import com.alibaba.fastjson2.annotation.JSONField; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.jg.framework.aspectj.lang.annotation.Excel; -import com.baomidou.mybatisplus.annotation.TableName; -import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; -import io.swagger.annotations.ApiModel; -import com.fasterxml.jackson.databind.annotation.JsonSerialize; -import io.swagger.annotations.ApiModelProperty; -import lombok.AllArgsConstructor; -import lombok.Builder; -import lombok.Data; -import lombok.NoArgsConstructor; - - - - -/** - * ${functionName}对象 ${tableName} - * - * @author ${author} - * @date ${datetime} - */ -@Data -@NoArgsConstructor -@AllArgsConstructor -@Builder -@ApiModel("${functionName}表") -@TableName("${tableName}") -public class ${ClassName}{ -private static final long serialVersionUID=1L; - -#foreach ($column in $columns) - #if(!$table.isSuperColumn($column.javaField)) - /** $column.columnComment */ - #if($column.list) - #set($parentheseIndex=$column.columnComment.indexOf("(")) - #if($parentheseIndex != -1) - #set($comment=$column.columnComment.substring(0, $parentheseIndex)) - #else - #set($comment=$column.columnComment) - #end - #end - #if($column.isPk == 1) - @JsonSerialize(using = ToStringSerializer.class) - @ApiModelProperty("$column.columnComment") - @TableId(value = "$column.columnName" , type = IdType.ASSIGN_ID) - private $column.javaType $column.javaField; - #else - @ApiModelProperty("$column.columnComment") - @Excel(name = "$column.columnComment") - @TableField("$column.columnName") - private $column.javaType $column.javaField; - #end - #else - #if($column.javaType == 'Date') - /** $column.columnComment */ - @ApiModelProperty(value = "$column.columnComment",hidden = true) - @Excel(name = "$column.columnComment") - @TableField("$column.columnName") - @JsonSerialize(using = ToStringSerializer.class) - private String $column.javaField; - #end - #end -#end -} \ No newline at end of file diff --git a/target/classes/vm/java/mapper.java.vm b/target/classes/vm/java/mapper.java.vm deleted file mode 100644 index ae34dd5..0000000 --- a/target/classes/vm/java/mapper.java.vm +++ /dev/null @@ -1,21 +0,0 @@ -package ${packageName}.mapper; - - -import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import ${packageName}.domain.${ClassName}; -import java.util.List; -/** - * ${functionName}Mapper接口 - * - * @author ${author} - * @date ${datetime} - */ -public interface ${ClassName}Mapper extends BaseMapper<${ClassName}> { - /** - * 查询${functionName}分页列表 - * - * @param ${className} ${functionName} - * @return ${functionName}集合 - */ - public List<${ClassName}> select${ClassName}List(${ClassName} ${className}); -} diff --git a/target/classes/vm/java/service.java.vm b/target/classes/vm/java/service.java.vm deleted file mode 100644 index 5e7e2d6..0000000 --- a/target/classes/vm/java/service.java.vm +++ /dev/null @@ -1,21 +0,0 @@ -package ${packageName}.service; - - -import ${packageName}.domain.${ClassName}; -import com.baomidou.mybatisplus.extension.service.IService; -import java.util.List; -/** - * ${functionName}Service接口 - * - * @author ${author} - * @date ${datetime} - */ -public interface I${ClassName}Service extends IService<${ClassName}> { - /** - * 查询${functionName}分页列表 - * - * @param ${className} ${functionName} - * @return ${functionName}集合 - */ - public List<${ClassName}> select${ClassName}List(${ClassName} ${className}); -} diff --git a/target/classes/vm/java/serviceImpl.java.vm b/target/classes/vm/java/serviceImpl.java.vm deleted file mode 100644 index ac2195a..0000000 --- a/target/classes/vm/java/serviceImpl.java.vm +++ /dev/null @@ -1,34 +0,0 @@ -package ${packageName}.service.impl; - -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import ${packageName}.mapper.${ClassName}Mapper; -import ${packageName}.domain.${ClassName}; -import ${packageName}.service.I${ClassName}Service; -import org.springframework.stereotype.Service; -import java.util.List; -import javax.annotation.Resource; - -/** - * ${functionName}Service业务层处理 - * - * @author ${author} - * @date ${datetime} - */ -@Service -public class ${ClassName}ServiceImpl extends ServiceImpl<${ClassName}Mapper, ${ClassName}> implements I${ClassName}Service { - - @Resource - private ${ClassName}Mapper ${className}Mapper; - - /** - * 查询${functionName}分页列表 - * - * @param ${className} ${functionName} - * @return ${functionName} - */ - @Override - public List<${ClassName}> select${ClassName}List(${ClassName} ${className}) - { - return ${className}Mapper.select${ClassName}List(${className}); - } -} diff --git a/target/classes/vm/java/sub-domain.java.vm b/target/classes/vm/java/sub-domain.java.vm deleted file mode 100644 index bd6247d..0000000 --- a/target/classes/vm/java/sub-domain.java.vm +++ /dev/null @@ -1,73 +0,0 @@ -package ${packageName}.domain; - - #foreach ($import in $subImportList) - import ${import}; - #end -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; -import com.rchuing.common.annotation.Excel; -import com.rchuing.common.core.domain.BaseEntity; - -/** - * ${subTable.functionName}对象 ${subTableName} - * - * @author ${author} - * @date ${datetime} - */ -public class ${subClassName} extends BaseEntity { -private static final long serialVersionUID = 1L; - -#foreach ($column in $subTable.columns) - #if(!$table.isSuperColumn($column.javaField)) - /** $column.columnComment */ - #if($column.list) - #set($parentheseIndex=$column.columnComment.indexOf("(")) - #if($parentheseIndex != -1) - #set($comment=$column.columnComment.substring(0, $parentheseIndex)) - #else - #set($comment=$column.columnComment) - #end - #if($parentheseIndex != -1) - @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") - #elseif($column.javaType == 'Date') - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "${comment}", width = 30, dateFormat = "yyyy-MM-dd") - #else - @Excel(name = "${comment}") - #end - #end - private $column.javaType $column.javaField; - - #end -#end -#foreach ($column in $subTable.columns) - #if(!$table.isSuperColumn($column.javaField)) - #if($column.javaField.length() > 2 && $column.javaField.substring(1,2).matches("[A-Z]")) - #set($AttrName=$column.javaField) - #else - #set($AttrName=$column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)}) - #end - public void set${AttrName}($column.javaType $column.javaField) { - this.$column.javaField = $column.javaField; - } - - public $column.javaType get${AttrName}() { - return $column.javaField; - } - #end -#end - -@Override -public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - #foreach ($column in $subTable.columns) - #if($column.javaField.length() > 2 && $column.javaField.substring(1,2).matches("[A-Z]")) - #set($AttrName=$column.javaField) - #else - #set($AttrName=$column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)}) - #end - .append("${column.javaField}", get${AttrName}()) - #end - .toString(); - } - } diff --git a/target/classes/vm/js/api.js.vm b/target/classes/vm/js/api.js.vm deleted file mode 100644 index 188eb26..0000000 --- a/target/classes/vm/js/api.js.vm +++ /dev/null @@ -1,51 +0,0 @@ -import request from '@/utils/request' - -// 查询${functionName}分列表 -export function listPage${BusinessName}(data) { - return request({ - url: '/${moduleName}/listPage', - method: 'post', - params: data - }) -} -// 查询${functionName}列表 -export function list${BusinessName}() { - return request({ - url: '/${moduleName}/list', - method: 'get', - }) -} -// 查询${functionName}详细 -export function get${BusinessName}(${pkColumn.javaField}) { - return request({ - url: '/${moduleName}/query?id=' + ${pkColumn.javaField}, - method: 'get' - }) -} - -// 新增${functionName} -export function add${BusinessName}(data) { - return request({ - url: '/${moduleName}/add', - method: 'post', - params: data - }) -} - -// 修改${functionName} -export function update${BusinessName}(data) { - return request({ - url: '/${moduleName}/edit', - method: 'post', - params: data - }) -} - -// 删除${functionName} -export function del${BusinessName}(${pkColumn.javaField}) { - return request({ - url: '/${moduleName}/remove/', - method: 'post', - params: {id:${pkColumn.javaField}} - }) -} diff --git a/target/classes/vm/sql/sql.vm b/target/classes/vm/sql/sql.vm deleted file mode 100644 index 0575583..0000000 --- a/target/classes/vm/sql/sql.vm +++ /dev/null @@ -1,22 +0,0 @@ --- 菜单 SQL -insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) -values('${functionName}', '${parentMenuId}', '1', '${businessName}', '${moduleName}/${businessName}/index', 1, 0, 'C', '0', '0', '${permissionPrefix}:list', '#', 'admin', sysdate(), '', null, '${functionName}菜单'); - --- 按钮父菜单ID -SELECT @parentId := LAST_INSERT_ID(); - --- 按钮 SQL -insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) -values('${functionName}查询', @parentId, '1', '#', '', 1, 0, 'F', '0', '0', '${permissionPrefix}:query', '#', 'admin', sysdate(), '', null, ''); - -insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) -values('${functionName}新增', @parentId, '2', '#', '', 1, 0, 'F', '0', '0', '${permissionPrefix}:add', '#', 'admin', sysdate(), '', null, ''); - -insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) -values('${functionName}修改', @parentId, '3', '#', '', 1, 0, 'F', '0', '0', '${permissionPrefix}:edit', '#', 'admin', sysdate(), '', null, ''); - -insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) -values('${functionName}删除', @parentId, '4', '#', '', 1, 0, 'F', '0', '0', '${permissionPrefix}:remove', '#', 'admin', sysdate(), '', null, ''); - -insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) -values('${functionName}导出', @parentId, '5', '#', '', 1, 0, 'F', '0', '0', '${permissionPrefix}:export', '#', 'admin', sysdate(), '', null, ''); \ No newline at end of file diff --git a/target/classes/vm/vue/index-tree.vue.vm b/target/classes/vm/vue/index-tree.vue.vm deleted file mode 100644 index 4819c2a..0000000 --- a/target/classes/vm/vue/index-tree.vue.vm +++ /dev/null @@ -1,505 +0,0 @@ - - - diff --git a/target/classes/vm/vue/index.vue.vm b/target/classes/vm/vue/index.vue.vm deleted file mode 100644 index 12f0296..0000000 --- a/target/classes/vm/vue/index.vue.vm +++ /dev/null @@ -1,713 +0,0 @@ - - - diff --git a/target/classes/vm/vue/v3/index-tree.vue.vm b/target/classes/vm/vue/v3/index-tree.vue.vm deleted file mode 100644 index c54d62b..0000000 --- a/target/classes/vm/vue/v3/index-tree.vue.vm +++ /dev/null @@ -1,474 +0,0 @@ - - - diff --git a/target/classes/vm/vue/v3/index.vue.vm b/target/classes/vm/vue/v3/index.vue.vm deleted file mode 100644 index 02c02ac..0000000 --- a/target/classes/vm/vue/v3/index.vue.vm +++ /dev/null @@ -1,590 +0,0 @@ - - - diff --git a/target/classes/vm/xml/mapper.xml.vm b/target/classes/vm/xml/mapper.xml.vm deleted file mode 100644 index cf810a4..0000000 --- a/target/classes/vm/xml/mapper.xml.vm +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - #foreach ($column in $columns) - - #end - - #if($table.sub) - - - - - - - #foreach ($column in $subTable.columns) - - #end - - #end - - - select#foreach($column in $columns) $column.columnName#if($foreach.count != $columns.size()),#end#end from ${tableName} - - - - \ No newline at end of file