diff --git a/sync-admin/target/classes/application-local.yml b/sync-admin/target/classes/application-local.yml deleted file mode 100644 index 74eb6d7..0000000 --- a/sync-admin/target/classes/application-local.yml +++ /dev/null @@ -1,67 +0,0 @@ -# 数据源配置 -spring: - redis: - host: 192.168.3.28 - port: 6379 - database: 1 - password: eGDiN3RRhRNzrzjd - datasource: - type: com.alibaba.druid.pool.DruidDataSource - druid: - # 主库数据源 - master: - driverClassName: com.mysql.cj.jdbc.Driver - url: jdbc:mysql://${spring.redis.host}:3306/sync-data?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 - username: root - password: K2bfP8rzG62ZSJGN - # 从库数据源 - slave: - # 从数据源开关/默认关闭 - enabled: false - driverClassName: - 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: ruoyi - 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/sync-admin/target/classes/application.yml b/sync-admin/target/classes/application.yml deleted file mode 100644 index 2d6cc3d..0000000 --- a/sync-admin/target/classes/application.yml +++ /dev/null @@ -1,131 +0,0 @@ ---- -spring: - profiles: - active: local ---- -# 项目相关配置 -sync: - # 名称 - name: sync-data - # 版本 - version: 1.0.0 - # 版权年份 - copyrightYear: 2024 - # 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath) - profile: D:/ruoyi/uploadPath - # 获取ip地址开关 - addressEnabled: false - # 验证码类型 math 数字计算 char 字符验证 - captchaType: math - -# 开发环境配置 -server: - # 服务器的HTTP端口,默认为8080 - port: 8090 - 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.lyr: debug - org.springframework: warn - -# 用户配置 -user: - password: - # 密码最大错误次数 - maxRetryCount: 50 - # 密码锁定时间(默认10分钟) - lockTime: 10 - -# Spring配置 -spring: - # 资源信息 - messages: - # 国际化资源文件路径 - basename: i18n/messages - # 文件上传 - servlet: - multipart: - # 单个文件大小 - max-file-size: 10MB - # 设置总上传的文件大小 - max-request-size: 20MB - # 服务模块 - devtools: - restart: - # 热部署开关 - enabled: true - # redis 配置 - redis: - # 地址 - host: localhost - # 端口,默认为6379 - port: 6379 - # 数据库索引 - database: 0 - # 密码 - password: - # 连接超时时间 - timeout: 10s - lettuce: - pool: - # 连接池中的最小空闲连接 - min-idle: 0 - # 连接池中的最大空闲连接 - max-idle: 8 - # 连接池的最大数据库连接数 - max-active: 8 - # #连接池最大阻塞等待时间(使用负值表示没有限制) - max-wait: -1ms - -# token配置 -token: - # 令牌自定义标识 - header: Authorization - # 令牌密钥 - secret: abcdefghijklmnopqrstuvwxyz - # 令牌有效期(默认30分钟) - expireTime: 30 - - -mybatis-plus: - typeAliasesPackage: com.lyr.**.domain - mapperLocations: classpath*:mapper/**/*Mapper.xml - mapperPackage: com.lyr.**.mapper - configuration: - log-impl: org.apache.ibatis.logging.stdout.StdOutImpl - map-underscore-to-camel-case: true - global-config: - db-config: - id-type: AUTO - banner: off - -# Swagger配置 -swagger: - # 是否开启swagger - enabled: false - # 请求前缀 - pathMapping: /dev-api - -# 防止XSS攻击 -xss: - # 过滤开关 - enabled: true - # 排除链接(多个用逗号分隔) - excludes: /system/notice - # 匹配链接 - urlPatterns: /system/*,/monitor/*,/tool/* - diff --git a/sync-admin/target/classes/com/lyr/RuoYiApplication.class b/sync-admin/target/classes/com/lyr/RuoYiApplication.class deleted file mode 100644 index f58cad1..0000000 Binary files a/sync-admin/target/classes/com/lyr/RuoYiApplication.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/RuoYiServletInitializer.class b/sync-admin/target/classes/com/lyr/RuoYiServletInitializer.class deleted file mode 100644 index 040a1c4..0000000 Binary files a/sync-admin/target/classes/com/lyr/RuoYiServletInitializer.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/common/CaptchaController.class b/sync-admin/target/classes/com/lyr/web/controller/common/CaptchaController.class deleted file mode 100644 index 830c66b..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/common/CaptchaController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/common/CommonController.class b/sync-admin/target/classes/com/lyr/web/controller/common/CommonController.class deleted file mode 100644 index 1f4d850..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/common/CommonController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/monitor/CacheController.class b/sync-admin/target/classes/com/lyr/web/controller/monitor/CacheController.class deleted file mode 100644 index e391f75..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/monitor/CacheController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/monitor/ServerController.class b/sync-admin/target/classes/com/lyr/web/controller/monitor/ServerController.class deleted file mode 100644 index c9629a7..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/monitor/ServerController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/monitor/SysLogininforController.class b/sync-admin/target/classes/com/lyr/web/controller/monitor/SysLogininforController.class deleted file mode 100644 index 6815240..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/monitor/SysLogininforController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/monitor/SysOperlogController.class b/sync-admin/target/classes/com/lyr/web/controller/monitor/SysOperlogController.class deleted file mode 100644 index c3ba79b..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/monitor/SysOperlogController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/monitor/SysUserOnlineController.class b/sync-admin/target/classes/com/lyr/web/controller/monitor/SysUserOnlineController.class deleted file mode 100644 index ad495bb..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/monitor/SysUserOnlineController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysConfigController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysConfigController.class deleted file mode 100644 index 946c8bc..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysConfigController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysDeptController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysDeptController.class deleted file mode 100644 index e877cbb..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysDeptController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysDictDataController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysDictDataController.class deleted file mode 100644 index 0126320..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysDictDataController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysDictTypeController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysDictTypeController.class deleted file mode 100644 index a148984..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysDictTypeController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysIndexController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysIndexController.class deleted file mode 100644 index fd060d8..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysIndexController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysLoginController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysLoginController.class deleted file mode 100644 index f4c8a1f..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysLoginController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysMenuController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysMenuController.class deleted file mode 100644 index 54312a8..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysMenuController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysNoticeController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysNoticeController.class deleted file mode 100644 index a4af0aa..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysNoticeController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysPostController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysPostController.class deleted file mode 100644 index 0ea0368..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysPostController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysProfileController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysProfileController.class deleted file mode 100644 index b8748c7..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysProfileController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysRegisterController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysRegisterController.class deleted file mode 100644 index 3b0a477..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysRegisterController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysRoleController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysRoleController.class deleted file mode 100644 index ab5589a..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysRoleController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/system/SysUserController.class b/sync-admin/target/classes/com/lyr/web/controller/system/SysUserController.class deleted file mode 100644 index f95bdd2..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/system/SysUserController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/tool/TestController.class b/sync-admin/target/classes/com/lyr/web/controller/tool/TestController.class deleted file mode 100644 index e7fe5a9..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/tool/TestController.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/controller/tool/UserEntity.class b/sync-admin/target/classes/com/lyr/web/controller/tool/UserEntity.class deleted file mode 100644 index 4876d77..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/controller/tool/UserEntity.class and /dev/null differ diff --git a/sync-admin/target/classes/com/lyr/web/core/config/SwaggerConfig.class b/sync-admin/target/classes/com/lyr/web/core/config/SwaggerConfig.class deleted file mode 100644 index a8e1bf7..0000000 Binary files a/sync-admin/target/classes/com/lyr/web/core/config/SwaggerConfig.class and /dev/null differ diff --git a/sync-admin/target/classes/i18n/messages.properties b/sync-admin/target/classes/i18n/messages.properties deleted file mode 100644 index dbd997b..0000000 --- a/sync-admin/target/classes/i18n/messages.properties +++ /dev/null @@ -1,33 +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/sync-admin/target/classes/logback.xml b/sync-admin/target/classes/logback.xml deleted file mode 100644 index 7793b8d..0000000 --- a/sync-admin/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/sync-admin/target/classes/mybatis/mybatis-config.xml b/sync-admin/target/classes/mybatis/mybatis-config.xml deleted file mode 100644 index b0c7ce7..0000000 --- a/sync-admin/target/classes/mybatis/mybatis-config.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/sync-common/target/classes/com/lyr/common/annotation/Anonymous.class b/sync-common/target/classes/com/lyr/common/annotation/Anonymous.class deleted file mode 100644 index ef92263..0000000 Binary files a/sync-common/target/classes/com/lyr/common/annotation/Anonymous.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/annotation/DataScope.class b/sync-common/target/classes/com/lyr/common/annotation/DataScope.class deleted file mode 100644 index 0901db4..0000000 Binary files a/sync-common/target/classes/com/lyr/common/annotation/DataScope.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/annotation/DataSource.class b/sync-common/target/classes/com/lyr/common/annotation/DataSource.class deleted file mode 100644 index e3a497b..0000000 Binary files a/sync-common/target/classes/com/lyr/common/annotation/DataSource.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/annotation/Excel$ColumnType.class b/sync-common/target/classes/com/lyr/common/annotation/Excel$ColumnType.class deleted file mode 100644 index 032f124..0000000 Binary files a/sync-common/target/classes/com/lyr/common/annotation/Excel$ColumnType.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/annotation/Excel$Type.class b/sync-common/target/classes/com/lyr/common/annotation/Excel$Type.class deleted file mode 100644 index 499c52b..0000000 Binary files a/sync-common/target/classes/com/lyr/common/annotation/Excel$Type.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/annotation/Excel.class b/sync-common/target/classes/com/lyr/common/annotation/Excel.class deleted file mode 100644 index 8e88c10..0000000 Binary files a/sync-common/target/classes/com/lyr/common/annotation/Excel.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/annotation/Excels.class b/sync-common/target/classes/com/lyr/common/annotation/Excels.class deleted file mode 100644 index 42ba24d..0000000 Binary files a/sync-common/target/classes/com/lyr/common/annotation/Excels.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/annotation/Log.class b/sync-common/target/classes/com/lyr/common/annotation/Log.class deleted file mode 100644 index f81d8ab..0000000 Binary files a/sync-common/target/classes/com/lyr/common/annotation/Log.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/annotation/RateLimiter.class b/sync-common/target/classes/com/lyr/common/annotation/RateLimiter.class deleted file mode 100644 index 7ab1826..0000000 Binary files a/sync-common/target/classes/com/lyr/common/annotation/RateLimiter.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/annotation/RepeatSubmit.class b/sync-common/target/classes/com/lyr/common/annotation/RepeatSubmit.class deleted file mode 100644 index a08925f..0000000 Binary files a/sync-common/target/classes/com/lyr/common/annotation/RepeatSubmit.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/annotation/Sensitive.class b/sync-common/target/classes/com/lyr/common/annotation/Sensitive.class deleted file mode 100644 index 1214334..0000000 Binary files a/sync-common/target/classes/com/lyr/common/annotation/Sensitive.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/config/RuoYiConfig.class b/sync-common/target/classes/com/lyr/common/config/RuoYiConfig.class deleted file mode 100644 index 9e10bcc..0000000 Binary files a/sync-common/target/classes/com/lyr/common/config/RuoYiConfig.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/config/serializer/SensitiveJsonSerializer.class b/sync-common/target/classes/com/lyr/common/config/serializer/SensitiveJsonSerializer.class deleted file mode 100644 index b06e41c..0000000 Binary files a/sync-common/target/classes/com/lyr/common/config/serializer/SensitiveJsonSerializer.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/constant/CacheConstants.class b/sync-common/target/classes/com/lyr/common/constant/CacheConstants.class deleted file mode 100644 index 6e86aad..0000000 Binary files a/sync-common/target/classes/com/lyr/common/constant/CacheConstants.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/constant/Constants.class b/sync-common/target/classes/com/lyr/common/constant/Constants.class deleted file mode 100644 index 45364a0..0000000 Binary files a/sync-common/target/classes/com/lyr/common/constant/Constants.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/constant/GenConstants.class b/sync-common/target/classes/com/lyr/common/constant/GenConstants.class deleted file mode 100644 index 2965e87..0000000 Binary files a/sync-common/target/classes/com/lyr/common/constant/GenConstants.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/constant/HttpStatus.class b/sync-common/target/classes/com/lyr/common/constant/HttpStatus.class deleted file mode 100644 index 2f290ee..0000000 Binary files a/sync-common/target/classes/com/lyr/common/constant/HttpStatus.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/constant/ScheduleConstants$Status.class b/sync-common/target/classes/com/lyr/common/constant/ScheduleConstants$Status.class deleted file mode 100644 index 091c3ce..0000000 Binary files a/sync-common/target/classes/com/lyr/common/constant/ScheduleConstants$Status.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/constant/ScheduleConstants.class b/sync-common/target/classes/com/lyr/common/constant/ScheduleConstants.class deleted file mode 100644 index a621b2d..0000000 Binary files a/sync-common/target/classes/com/lyr/common/constant/ScheduleConstants.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/constant/UserConstants.class b/sync-common/target/classes/com/lyr/common/constant/UserConstants.class deleted file mode 100644 index d2b2eb3..0000000 Binary files a/sync-common/target/classes/com/lyr/common/constant/UserConstants.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/controller/BaseController$1.class b/sync-common/target/classes/com/lyr/common/core/controller/BaseController$1.class deleted file mode 100644 index 908deca..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/controller/BaseController$1.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/controller/BaseController.class b/sync-common/target/classes/com/lyr/common/core/controller/BaseController.class deleted file mode 100644 index 8f6675d..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/controller/BaseController.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/AjaxResult.class b/sync-common/target/classes/com/lyr/common/core/domain/AjaxResult.class deleted file mode 100644 index 2f7aad3..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/AjaxResult.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/BaseEntity.class b/sync-common/target/classes/com/lyr/common/core/domain/BaseEntity.class deleted file mode 100644 index ec8c035..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/BaseEntity.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/R.class b/sync-common/target/classes/com/lyr/common/core/domain/R.class deleted file mode 100644 index 2b33de4..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/R.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/TreeEntity.class b/sync-common/target/classes/com/lyr/common/core/domain/TreeEntity.class deleted file mode 100644 index b3da5a3..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/TreeEntity.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/TreeSelect.class b/sync-common/target/classes/com/lyr/common/core/domain/TreeSelect.class deleted file mode 100644 index 02cb7f5..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/TreeSelect.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysDept.class b/sync-common/target/classes/com/lyr/common/core/domain/entity/SysDept.class deleted file mode 100644 index a1e8740..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysDept.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysDictData.class b/sync-common/target/classes/com/lyr/common/core/domain/entity/SysDictData.class deleted file mode 100644 index 3b73b81..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysDictData.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysDictType.class b/sync-common/target/classes/com/lyr/common/core/domain/entity/SysDictType.class deleted file mode 100644 index e4f246a..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysDictType.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysMenu.class b/sync-common/target/classes/com/lyr/common/core/domain/entity/SysMenu.class deleted file mode 100644 index 9d95262..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysMenu.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysRole.class b/sync-common/target/classes/com/lyr/common/core/domain/entity/SysRole.class deleted file mode 100644 index 5f8ca47..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysRole.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysUser.class b/sync-common/target/classes/com/lyr/common/core/domain/entity/SysUser.class deleted file mode 100644 index 9b6326b..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/entity/SysUser.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/model/LoginBody.class b/sync-common/target/classes/com/lyr/common/core/domain/model/LoginBody.class deleted file mode 100644 index a415f11..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/model/LoginBody.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/model/LoginUser.class b/sync-common/target/classes/com/lyr/common/core/domain/model/LoginUser.class deleted file mode 100644 index 88df0fb..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/model/LoginUser.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/domain/model/RegisterBody.class b/sync-common/target/classes/com/lyr/common/core/domain/model/RegisterBody.class deleted file mode 100644 index e11ba92..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/domain/model/RegisterBody.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/page/PageDomain.class b/sync-common/target/classes/com/lyr/common/core/page/PageDomain.class deleted file mode 100644 index 3acc88d..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/page/PageDomain.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/page/TableDataInfo.class b/sync-common/target/classes/com/lyr/common/core/page/TableDataInfo.class deleted file mode 100644 index c1636cb..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/page/TableDataInfo.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/page/TableSupport.class b/sync-common/target/classes/com/lyr/common/core/page/TableSupport.class deleted file mode 100644 index b547d09..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/page/TableSupport.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/redis/RedisCache.class b/sync-common/target/classes/com/lyr/common/core/redis/RedisCache.class deleted file mode 100644 index c780cca..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/redis/RedisCache.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/text/CharsetKit.class b/sync-common/target/classes/com/lyr/common/core/text/CharsetKit.class deleted file mode 100644 index 284a90c..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/text/CharsetKit.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/text/Convert.class b/sync-common/target/classes/com/lyr/common/core/text/Convert.class deleted file mode 100644 index 869d6d1..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/text/Convert.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/core/text/StrFormatter.class b/sync-common/target/classes/com/lyr/common/core/text/StrFormatter.class deleted file mode 100644 index fcbcf3a..0000000 Binary files a/sync-common/target/classes/com/lyr/common/core/text/StrFormatter.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/enums/BusinessStatus.class b/sync-common/target/classes/com/lyr/common/enums/BusinessStatus.class deleted file mode 100644 index d0a1d0b..0000000 Binary files a/sync-common/target/classes/com/lyr/common/enums/BusinessStatus.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/enums/BusinessType.class b/sync-common/target/classes/com/lyr/common/enums/BusinessType.class deleted file mode 100644 index 7e64ede..0000000 Binary files a/sync-common/target/classes/com/lyr/common/enums/BusinessType.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/enums/DataSourceType.class b/sync-common/target/classes/com/lyr/common/enums/DataSourceType.class deleted file mode 100644 index 4f69c35..0000000 Binary files a/sync-common/target/classes/com/lyr/common/enums/DataSourceType.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/enums/DesensitizedType.class b/sync-common/target/classes/com/lyr/common/enums/DesensitizedType.class deleted file mode 100644 index b0031f8..0000000 Binary files a/sync-common/target/classes/com/lyr/common/enums/DesensitizedType.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/enums/HttpMethod.class b/sync-common/target/classes/com/lyr/common/enums/HttpMethod.class deleted file mode 100644 index 8d55e27..0000000 Binary files a/sync-common/target/classes/com/lyr/common/enums/HttpMethod.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/enums/LimitType.class b/sync-common/target/classes/com/lyr/common/enums/LimitType.class deleted file mode 100644 index 0654b13..0000000 Binary files a/sync-common/target/classes/com/lyr/common/enums/LimitType.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/enums/OperatorType.class b/sync-common/target/classes/com/lyr/common/enums/OperatorType.class deleted file mode 100644 index 9553eee..0000000 Binary files a/sync-common/target/classes/com/lyr/common/enums/OperatorType.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/enums/UserStatus.class b/sync-common/target/classes/com/lyr/common/enums/UserStatus.class deleted file mode 100644 index afd6970..0000000 Binary files a/sync-common/target/classes/com/lyr/common/enums/UserStatus.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/DemoModeException.class b/sync-common/target/classes/com/lyr/common/exception/DemoModeException.class deleted file mode 100644 index 1fd1ebe..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/DemoModeException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/GlobalException.class b/sync-common/target/classes/com/lyr/common/exception/GlobalException.class deleted file mode 100644 index bda9fcf..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/GlobalException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/ServiceException.class b/sync-common/target/classes/com/lyr/common/exception/ServiceException.class deleted file mode 100644 index 3e8e4ac..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/ServiceException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/UtilException.class b/sync-common/target/classes/com/lyr/common/exception/UtilException.class deleted file mode 100644 index 8707762..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/UtilException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/base/BaseException.class b/sync-common/target/classes/com/lyr/common/exception/base/BaseException.class deleted file mode 100644 index c05558c..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/base/BaseException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/file/FileException.class b/sync-common/target/classes/com/lyr/common/exception/file/FileException.class deleted file mode 100644 index 15d3a59..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/file/FileException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/file/FileNameLengthLimitExceededException.class b/sync-common/target/classes/com/lyr/common/exception/file/FileNameLengthLimitExceededException.class deleted file mode 100644 index 082de6f..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/file/FileNameLengthLimitExceededException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/file/FileSizeLimitExceededException.class b/sync-common/target/classes/com/lyr/common/exception/file/FileSizeLimitExceededException.class deleted file mode 100644 index c4d51b3..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/file/FileSizeLimitExceededException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/file/FileUploadException.class b/sync-common/target/classes/com/lyr/common/exception/file/FileUploadException.class deleted file mode 100644 index 4a02cec..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/file/FileUploadException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidFlashExtensionException.class b/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidFlashExtensionException.class deleted file mode 100644 index 9c8b20e..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidFlashExtensionException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidImageExtensionException.class b/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidImageExtensionException.class deleted file mode 100644 index 0390937..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidImageExtensionException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidMediaExtensionException.class b/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidMediaExtensionException.class deleted file mode 100644 index dc1526a..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidMediaExtensionException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidVideoExtensionException.class b/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidVideoExtensionException.class deleted file mode 100644 index a78a18c..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException$InvalidVideoExtensionException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException.class b/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException.class deleted file mode 100644 index 43a5cec..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/file/InvalidExtensionException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/job/TaskException$Code.class b/sync-common/target/classes/com/lyr/common/exception/job/TaskException$Code.class deleted file mode 100644 index 4c98086..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/job/TaskException$Code.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/job/TaskException.class b/sync-common/target/classes/com/lyr/common/exception/job/TaskException.class deleted file mode 100644 index 8a74783..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/job/TaskException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/user/BlackListException.class b/sync-common/target/classes/com/lyr/common/exception/user/BlackListException.class deleted file mode 100644 index 5ddb90c..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/user/BlackListException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/user/CaptchaException.class b/sync-common/target/classes/com/lyr/common/exception/user/CaptchaException.class deleted file mode 100644 index 0b54870..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/user/CaptchaException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/user/CaptchaExpireException.class b/sync-common/target/classes/com/lyr/common/exception/user/CaptchaExpireException.class deleted file mode 100644 index cd4c60d..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/user/CaptchaExpireException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/user/UserException.class b/sync-common/target/classes/com/lyr/common/exception/user/UserException.class deleted file mode 100644 index 86c6192..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/user/UserException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/user/UserNotExistsException.class b/sync-common/target/classes/com/lyr/common/exception/user/UserNotExistsException.class deleted file mode 100644 index e09a60f..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/user/UserNotExistsException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/user/UserPasswordNotMatchException.class b/sync-common/target/classes/com/lyr/common/exception/user/UserPasswordNotMatchException.class deleted file mode 100644 index b553a5a..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/user/UserPasswordNotMatchException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/exception/user/UserPasswordRetryLimitExceedException.class b/sync-common/target/classes/com/lyr/common/exception/user/UserPasswordRetryLimitExceedException.class deleted file mode 100644 index 4ada936..0000000 Binary files a/sync-common/target/classes/com/lyr/common/exception/user/UserPasswordRetryLimitExceedException.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/filter/PropertyPreExcludeFilter.class b/sync-common/target/classes/com/lyr/common/filter/PropertyPreExcludeFilter.class deleted file mode 100644 index 73bfc88..0000000 Binary files a/sync-common/target/classes/com/lyr/common/filter/PropertyPreExcludeFilter.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/filter/RepeatableFilter.class b/sync-common/target/classes/com/lyr/common/filter/RepeatableFilter.class deleted file mode 100644 index f2bd2b2..0000000 Binary files a/sync-common/target/classes/com/lyr/common/filter/RepeatableFilter.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/filter/RepeatedlyRequestWrapper$1.class b/sync-common/target/classes/com/lyr/common/filter/RepeatedlyRequestWrapper$1.class deleted file mode 100644 index 798b56d..0000000 Binary files a/sync-common/target/classes/com/lyr/common/filter/RepeatedlyRequestWrapper$1.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/filter/RepeatedlyRequestWrapper.class b/sync-common/target/classes/com/lyr/common/filter/RepeatedlyRequestWrapper.class deleted file mode 100644 index 42d2751..0000000 Binary files a/sync-common/target/classes/com/lyr/common/filter/RepeatedlyRequestWrapper.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/filter/XssFilter.class b/sync-common/target/classes/com/lyr/common/filter/XssFilter.class deleted file mode 100644 index 9177a1f..0000000 Binary files a/sync-common/target/classes/com/lyr/common/filter/XssFilter.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/filter/XssHttpServletRequestWrapper$1.class b/sync-common/target/classes/com/lyr/common/filter/XssHttpServletRequestWrapper$1.class deleted file mode 100644 index daf51f7..0000000 Binary files a/sync-common/target/classes/com/lyr/common/filter/XssHttpServletRequestWrapper$1.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/filter/XssHttpServletRequestWrapper.class b/sync-common/target/classes/com/lyr/common/filter/XssHttpServletRequestWrapper.class deleted file mode 100644 index 1c55687..0000000 Binary files a/sync-common/target/classes/com/lyr/common/filter/XssHttpServletRequestWrapper.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/Arith.class b/sync-common/target/classes/com/lyr/common/utils/Arith.class deleted file mode 100644 index 7e59b16..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/Arith.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/DateUtils.class b/sync-common/target/classes/com/lyr/common/utils/DateUtils.class deleted file mode 100644 index 4e35bb5..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/DateUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/DesensitizedUtil.class b/sync-common/target/classes/com/lyr/common/utils/DesensitizedUtil.class deleted file mode 100644 index a067321..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/DesensitizedUtil.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/DictUtils.class b/sync-common/target/classes/com/lyr/common/utils/DictUtils.class deleted file mode 100644 index a171cba..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/DictUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/ExceptionUtil.class b/sync-common/target/classes/com/lyr/common/utils/ExceptionUtil.class deleted file mode 100644 index 60b7f26..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/ExceptionUtil.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/LogUtils.class b/sync-common/target/classes/com/lyr/common/utils/LogUtils.class deleted file mode 100644 index 915de56..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/LogUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/MessageUtils.class b/sync-common/target/classes/com/lyr/common/utils/MessageUtils.class deleted file mode 100644 index c3b6797..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/MessageUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/SecurityUtils.class b/sync-common/target/classes/com/lyr/common/utils/SecurityUtils.class deleted file mode 100644 index 4b7d448..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/SecurityUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/ServletUtils.class b/sync-common/target/classes/com/lyr/common/utils/ServletUtils.class deleted file mode 100644 index 10520d4..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/ServletUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/StringUtils.class b/sync-common/target/classes/com/lyr/common/utils/StringUtils.class deleted file mode 100644 index a8ffc9e..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/StringUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/Threads.class b/sync-common/target/classes/com/lyr/common/utils/Threads.class deleted file mode 100644 index a13e6b9..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/Threads.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/bean/BeanUtils.class b/sync-common/target/classes/com/lyr/common/utils/bean/BeanUtils.class deleted file mode 100644 index 67439d1..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/bean/BeanUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/bean/BeanValidators.class b/sync-common/target/classes/com/lyr/common/utils/bean/BeanValidators.class deleted file mode 100644 index 9e04fbf..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/bean/BeanValidators.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/file/FileTypeUtils.class b/sync-common/target/classes/com/lyr/common/utils/file/FileTypeUtils.class deleted file mode 100644 index 670c8db..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/file/FileTypeUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/file/FileUploadUtils.class b/sync-common/target/classes/com/lyr/common/utils/file/FileUploadUtils.class deleted file mode 100644 index 5367b93..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/file/FileUploadUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/file/FileUtils.class b/sync-common/target/classes/com/lyr/common/utils/file/FileUtils.class deleted file mode 100644 index 0718dcd..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/file/FileUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/file/ImageUtils.class b/sync-common/target/classes/com/lyr/common/utils/file/ImageUtils.class deleted file mode 100644 index 47f8ba1..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/file/ImageUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/file/MimeTypeUtils.class b/sync-common/target/classes/com/lyr/common/utils/file/MimeTypeUtils.class deleted file mode 100644 index e948cf8..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/file/MimeTypeUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/html/EscapeUtil.class b/sync-common/target/classes/com/lyr/common/utils/html/EscapeUtil.class deleted file mode 100644 index 1080b9e..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/html/EscapeUtil.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/html/HTMLFilter.class b/sync-common/target/classes/com/lyr/common/utils/html/HTMLFilter.class deleted file mode 100644 index 2049d8a..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/html/HTMLFilter.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/http/HttpHelper.class b/sync-common/target/classes/com/lyr/common/utils/http/HttpHelper.class deleted file mode 100644 index f5da776..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/http/HttpHelper.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils$1.class b/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils$1.class deleted file mode 100644 index 3f67d42..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils$1.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils$TrustAnyHostnameVerifier.class b/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils$TrustAnyHostnameVerifier.class deleted file mode 100644 index 81feacb..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils$TrustAnyHostnameVerifier.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils$TrustAnyTrustManager.class b/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils$TrustAnyTrustManager.class deleted file mode 100644 index 52ce67e..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils$TrustAnyTrustManager.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils.class b/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils.class deleted file mode 100644 index 002139c..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/http/HttpUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/ip/AddressUtils.class b/sync-common/target/classes/com/lyr/common/utils/ip/AddressUtils.class deleted file mode 100644 index d5d39b4..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/ip/AddressUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/ip/IpUtils.class b/sync-common/target/classes/com/lyr/common/utils/ip/IpUtils.class deleted file mode 100644 index 43a02c7..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/ip/IpUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/poi/ExcelHandlerAdapter.class b/sync-common/target/classes/com/lyr/common/utils/poi/ExcelHandlerAdapter.class deleted file mode 100644 index 871ae0b..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/poi/ExcelHandlerAdapter.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/poi/ExcelUtil.class b/sync-common/target/classes/com/lyr/common/utils/poi/ExcelUtil.class deleted file mode 100644 index 4d99afc..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/poi/ExcelUtil.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/reflect/ReflectUtils.class b/sync-common/target/classes/com/lyr/common/utils/reflect/ReflectUtils.class deleted file mode 100644 index cf978c3..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/reflect/ReflectUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/sign/Base64.class b/sync-common/target/classes/com/lyr/common/utils/sign/Base64.class deleted file mode 100644 index 216117d..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/sign/Base64.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/sign/Md5Utils.class b/sync-common/target/classes/com/lyr/common/utils/sign/Md5Utils.class deleted file mode 100644 index 8f5c61e..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/sign/Md5Utils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/spring/SpringUtils.class b/sync-common/target/classes/com/lyr/common/utils/spring/SpringUtils.class deleted file mode 100644 index 711443e..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/spring/SpringUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/sql/SqlUtil.class b/sync-common/target/classes/com/lyr/common/utils/sql/SqlUtil.class deleted file mode 100644 index aa0600b..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/sql/SqlUtil.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/uuid/IdUtils.class b/sync-common/target/classes/com/lyr/common/utils/uuid/IdUtils.class deleted file mode 100644 index 13ec829..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/uuid/IdUtils.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/uuid/Seq.class b/sync-common/target/classes/com/lyr/common/utils/uuid/Seq.class deleted file mode 100644 index 8a3e95b..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/uuid/Seq.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/uuid/UUID$Holder.class b/sync-common/target/classes/com/lyr/common/utils/uuid/UUID$Holder.class deleted file mode 100644 index b78e6f8..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/uuid/UUID$Holder.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/utils/uuid/UUID.class b/sync-common/target/classes/com/lyr/common/utils/uuid/UUID.class deleted file mode 100644 index 87cf023..0000000 Binary files a/sync-common/target/classes/com/lyr/common/utils/uuid/UUID.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/xss/Xss.class b/sync-common/target/classes/com/lyr/common/xss/Xss.class deleted file mode 100644 index 05ab545..0000000 Binary files a/sync-common/target/classes/com/lyr/common/xss/Xss.class and /dev/null differ diff --git a/sync-common/target/classes/com/lyr/common/xss/XssValidator.class b/sync-common/target/classes/com/lyr/common/xss/XssValidator.class deleted file mode 100644 index 0194681..0000000 Binary files a/sync-common/target/classes/com/lyr/common/xss/XssValidator.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/aspectj/DataScopeAspect.class b/sync-framework/target/classes/com/lyr/framework/aspectj/DataScopeAspect.class deleted file mode 100644 index 916e62a..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/aspectj/DataScopeAspect.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/aspectj/DataSourceAspect.class b/sync-framework/target/classes/com/lyr/framework/aspectj/DataSourceAspect.class deleted file mode 100644 index 547a090..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/aspectj/DataSourceAspect.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/aspectj/LogAspect.class b/sync-framework/target/classes/com/lyr/framework/aspectj/LogAspect.class deleted file mode 100644 index de50ee2..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/aspectj/LogAspect.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/aspectj/RateLimiterAspect.class b/sync-framework/target/classes/com/lyr/framework/aspectj/RateLimiterAspect.class deleted file mode 100644 index 3e4892b..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/aspectj/RateLimiterAspect.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/ApplicationConfig.class b/sync-framework/target/classes/com/lyr/framework/config/ApplicationConfig.class deleted file mode 100644 index bc4996e..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/ApplicationConfig.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/CaptchaConfig.class b/sync-framework/target/classes/com/lyr/framework/config/CaptchaConfig.class deleted file mode 100644 index 864823a..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/CaptchaConfig.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/DruidConfig$1.class b/sync-framework/target/classes/com/lyr/framework/config/DruidConfig$1.class deleted file mode 100644 index 85c723d..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/DruidConfig$1.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/DruidConfig.class b/sync-framework/target/classes/com/lyr/framework/config/DruidConfig.class deleted file mode 100644 index b4a7a5c..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/DruidConfig.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/FastJson2JsonRedisSerializer.class b/sync-framework/target/classes/com/lyr/framework/config/FastJson2JsonRedisSerializer.class deleted file mode 100644 index 38727cf..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/FastJson2JsonRedisSerializer.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/FilterConfig.class b/sync-framework/target/classes/com/lyr/framework/config/FilterConfig.class deleted file mode 100644 index 9792a71..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/FilterConfig.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/I18nConfig.class b/sync-framework/target/classes/com/lyr/framework/config/I18nConfig.class deleted file mode 100644 index 6edce19..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/I18nConfig.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/KaptchaTextCreator.class b/sync-framework/target/classes/com/lyr/framework/config/KaptchaTextCreator.class deleted file mode 100644 index 1d8d690..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/KaptchaTextCreator.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/MyBatisConfig.class b/sync-framework/target/classes/com/lyr/framework/config/MyBatisConfig.class deleted file mode 100644 index bbee882..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/MyBatisConfig.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/RedisConfig.class b/sync-framework/target/classes/com/lyr/framework/config/RedisConfig.class deleted file mode 100644 index 7784344..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/RedisConfig.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/ResourcesConfig.class b/sync-framework/target/classes/com/lyr/framework/config/ResourcesConfig.class deleted file mode 100644 index e823934..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/ResourcesConfig.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/SecurityConfig.class b/sync-framework/target/classes/com/lyr/framework/config/SecurityConfig.class deleted file mode 100644 index 798e01e..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/SecurityConfig.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/ServerConfig.class b/sync-framework/target/classes/com/lyr/framework/config/ServerConfig.class deleted file mode 100644 index 9978a4f..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/ServerConfig.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/ThreadPoolConfig$1.class b/sync-framework/target/classes/com/lyr/framework/config/ThreadPoolConfig$1.class deleted file mode 100644 index 224c5af..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/ThreadPoolConfig$1.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/ThreadPoolConfig.class b/sync-framework/target/classes/com/lyr/framework/config/ThreadPoolConfig.class deleted file mode 100644 index 4e24f55..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/ThreadPoolConfig.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/properties/DruidProperties.class b/sync-framework/target/classes/com/lyr/framework/config/properties/DruidProperties.class deleted file mode 100644 index f12b12d..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/properties/DruidProperties.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/config/properties/PermitAllUrlProperties.class b/sync-framework/target/classes/com/lyr/framework/config/properties/PermitAllUrlProperties.class deleted file mode 100644 index c336431..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/config/properties/PermitAllUrlProperties.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/datasource/DynamicDataSource.class b/sync-framework/target/classes/com/lyr/framework/datasource/DynamicDataSource.class deleted file mode 100644 index 2584dfb..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/datasource/DynamicDataSource.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/datasource/DynamicDataSourceContextHolder.class b/sync-framework/target/classes/com/lyr/framework/datasource/DynamicDataSourceContextHolder.class deleted file mode 100644 index d9baf62..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/datasource/DynamicDataSourceContextHolder.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/interceptor/RepeatSubmitInterceptor.class b/sync-framework/target/classes/com/lyr/framework/interceptor/RepeatSubmitInterceptor.class deleted file mode 100644 index bad77f5..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/interceptor/RepeatSubmitInterceptor.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/interceptor/impl/SameUrlDataInterceptor.class b/sync-framework/target/classes/com/lyr/framework/interceptor/impl/SameUrlDataInterceptor.class deleted file mode 100644 index b638f47..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/interceptor/impl/SameUrlDataInterceptor.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/manager/AsyncManager.class b/sync-framework/target/classes/com/lyr/framework/manager/AsyncManager.class deleted file mode 100644 index 8ba0066..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/manager/AsyncManager.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/manager/ShutdownManager.class b/sync-framework/target/classes/com/lyr/framework/manager/ShutdownManager.class deleted file mode 100644 index 50cf3c6..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/manager/ShutdownManager.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/manager/factory/AsyncFactory$1.class b/sync-framework/target/classes/com/lyr/framework/manager/factory/AsyncFactory$1.class deleted file mode 100644 index 07eb2eb..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/manager/factory/AsyncFactory$1.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/manager/factory/AsyncFactory$2.class b/sync-framework/target/classes/com/lyr/framework/manager/factory/AsyncFactory$2.class deleted file mode 100644 index 9a1c7b6..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/manager/factory/AsyncFactory$2.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/manager/factory/AsyncFactory.class b/sync-framework/target/classes/com/lyr/framework/manager/factory/AsyncFactory.class deleted file mode 100644 index bc976b4..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/manager/factory/AsyncFactory.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/security/context/AuthenticationContextHolder.class b/sync-framework/target/classes/com/lyr/framework/security/context/AuthenticationContextHolder.class deleted file mode 100644 index 776c62a..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/security/context/AuthenticationContextHolder.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/security/context/PermissionContextHolder.class b/sync-framework/target/classes/com/lyr/framework/security/context/PermissionContextHolder.class deleted file mode 100644 index f72d0a6..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/security/context/PermissionContextHolder.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/security/filter/JwtAuthenticationTokenFilter.class b/sync-framework/target/classes/com/lyr/framework/security/filter/JwtAuthenticationTokenFilter.class deleted file mode 100644 index 605b33c..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/security/filter/JwtAuthenticationTokenFilter.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/security/handle/AuthenticationEntryPointImpl.class b/sync-framework/target/classes/com/lyr/framework/security/handle/AuthenticationEntryPointImpl.class deleted file mode 100644 index fa4aff2..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/security/handle/AuthenticationEntryPointImpl.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/security/handle/LogoutSuccessHandlerImpl.class b/sync-framework/target/classes/com/lyr/framework/security/handle/LogoutSuccessHandlerImpl.class deleted file mode 100644 index b2ff544..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/security/handle/LogoutSuccessHandlerImpl.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/domain/Server.class b/sync-framework/target/classes/com/lyr/framework/web/domain/Server.class deleted file mode 100644 index 3fe0a84..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/domain/Server.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/domain/server/Cpu.class b/sync-framework/target/classes/com/lyr/framework/web/domain/server/Cpu.class deleted file mode 100644 index 2d1d28f..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/domain/server/Cpu.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/domain/server/Jvm.class b/sync-framework/target/classes/com/lyr/framework/web/domain/server/Jvm.class deleted file mode 100644 index 30f4c8a..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/domain/server/Jvm.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/domain/server/Mem.class b/sync-framework/target/classes/com/lyr/framework/web/domain/server/Mem.class deleted file mode 100644 index 993a415..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/domain/server/Mem.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/domain/server/Sys.class b/sync-framework/target/classes/com/lyr/framework/web/domain/server/Sys.class deleted file mode 100644 index df8a52b..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/domain/server/Sys.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/domain/server/SysFile.class b/sync-framework/target/classes/com/lyr/framework/web/domain/server/SysFile.class deleted file mode 100644 index 5895f07..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/domain/server/SysFile.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/exception/GlobalExceptionHandler.class b/sync-framework/target/classes/com/lyr/framework/web/exception/GlobalExceptionHandler.class deleted file mode 100644 index aba656e..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/exception/GlobalExceptionHandler.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/service/PermissionService.class b/sync-framework/target/classes/com/lyr/framework/web/service/PermissionService.class deleted file mode 100644 index 24170c8..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/service/PermissionService.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/service/SysLoginService.class b/sync-framework/target/classes/com/lyr/framework/web/service/SysLoginService.class deleted file mode 100644 index 1bfd378..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/service/SysLoginService.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/service/SysPasswordService.class b/sync-framework/target/classes/com/lyr/framework/web/service/SysPasswordService.class deleted file mode 100644 index d570983..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/service/SysPasswordService.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/service/SysPermissionService.class b/sync-framework/target/classes/com/lyr/framework/web/service/SysPermissionService.class deleted file mode 100644 index 1030024..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/service/SysPermissionService.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/service/SysRegisterService.class b/sync-framework/target/classes/com/lyr/framework/web/service/SysRegisterService.class deleted file mode 100644 index f99d747..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/service/SysRegisterService.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/service/TokenService.class b/sync-framework/target/classes/com/lyr/framework/web/service/TokenService.class deleted file mode 100644 index 4083775..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/service/TokenService.class and /dev/null differ diff --git a/sync-framework/target/classes/com/lyr/framework/web/service/UserDetailsServiceImpl.class b/sync-framework/target/classes/com/lyr/framework/web/service/UserDetailsServiceImpl.class deleted file mode 100644 index b028649..0000000 Binary files a/sync-framework/target/classes/com/lyr/framework/web/service/UserDetailsServiceImpl.class and /dev/null differ diff --git a/sync-gather/target/generated-sources/annotations/com/lyr/gather/convert/DataSourceConfigConvertImpl.java b/sync-gather/target/generated-sources/annotations/com/lyr/gather/convert/DataSourceConfigConvertImpl.java deleted file mode 100644 index 8d984d0..0000000 --- a/sync-gather/target/generated-sources/annotations/com/lyr/gather/convert/DataSourceConfigConvertImpl.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.lyr.gather.convert; - -import com.alibaba.druid.pool.DruidDataSource; -import com.lyr.gather.domain.DataSourceConfigDTO; -import javax.annotation.Generated; - -@Generated( - value = "org.mapstruct.ap.MappingProcessor", - date = "2024-10-31T16:38:15+0800", - comments = "version: 1.6.2, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" -) -public class DataSourceConfigConvertImpl implements DataSourceConfigConvert { - - @Override - public DruidDataSource convert(DataSourceConfigDTO bean) { - if ( bean == null ) { - return null; - } - - DruidDataSource druidDataSource = new DruidDataSource(); - - druidDataSource.setName( bean.getName() ); - druidDataSource.setUsername( bean.getUsername() ); - druidDataSource.setPassword( bean.getPassword() ); - - return druidDataSource; - } -} diff --git a/sync-generator/target/classes/com/lyr/generator/config/GenConfig.class b/sync-generator/target/classes/com/lyr/generator/config/GenConfig.class deleted file mode 100644 index 3b2eb5e..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/config/GenConfig.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/controller/GenController.class b/sync-generator/target/classes/com/lyr/generator/controller/GenController.class deleted file mode 100644 index a8dce21..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/controller/GenController.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/domain/GenTable.class b/sync-generator/target/classes/com/lyr/generator/domain/GenTable.class deleted file mode 100644 index aa9e952..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/domain/GenTable.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/domain/GenTableColumn.class b/sync-generator/target/classes/com/lyr/generator/domain/GenTableColumn.class deleted file mode 100644 index 2fde174..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/domain/GenTableColumn.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/mapper/GenTableColumnMapper.class b/sync-generator/target/classes/com/lyr/generator/mapper/GenTableColumnMapper.class deleted file mode 100644 index 26bdf42..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/mapper/GenTableColumnMapper.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/mapper/GenTableMapper.class b/sync-generator/target/classes/com/lyr/generator/mapper/GenTableMapper.class deleted file mode 100644 index 322298a..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/mapper/GenTableMapper.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/service/GenTableColumnServiceImpl.class b/sync-generator/target/classes/com/lyr/generator/service/GenTableColumnServiceImpl.class deleted file mode 100644 index 62ab0b5..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/service/GenTableColumnServiceImpl.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/service/GenTableServiceImpl.class b/sync-generator/target/classes/com/lyr/generator/service/GenTableServiceImpl.class deleted file mode 100644 index c893a79..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/service/GenTableServiceImpl.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/service/IGenTableColumnService.class b/sync-generator/target/classes/com/lyr/generator/service/IGenTableColumnService.class deleted file mode 100644 index 4bdb56d..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/service/IGenTableColumnService.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/service/IGenTableService.class b/sync-generator/target/classes/com/lyr/generator/service/IGenTableService.class deleted file mode 100644 index f48287e..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/service/IGenTableService.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/util/GenUtils.class b/sync-generator/target/classes/com/lyr/generator/util/GenUtils.class deleted file mode 100644 index 94ba709..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/util/GenUtils.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/util/VelocityInitializer.class b/sync-generator/target/classes/com/lyr/generator/util/VelocityInitializer.class deleted file mode 100644 index 48ff718..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/util/VelocityInitializer.class and /dev/null differ diff --git a/sync-generator/target/classes/com/lyr/generator/util/VelocityUtils.class b/sync-generator/target/classes/com/lyr/generator/util/VelocityUtils.class deleted file mode 100644 index d0f9804..0000000 Binary files a/sync-generator/target/classes/com/lyr/generator/util/VelocityUtils.class and /dev/null differ diff --git a/sync-generator/target/classes/generator.yml b/sync-generator/target/classes/generator.yml deleted file mode 100644 index ce0cc2a..0000000 --- a/sync-generator/target/classes/generator.yml +++ /dev/null @@ -1,10 +0,0 @@ -# 代码生成 -gen: - # 作者 - author: ruoyi - # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool - packageName: com.lyr.system - # 自动去除表前缀,默认是false - autoRemovePre: false - # 表前缀(生成类名不会包含表前缀,多个用逗号分隔) - tablePrefix: sys_ \ No newline at end of file diff --git a/sync-generator/target/classes/mapper/generator/GenTableColumnMapper.xml b/sync-generator/target/classes/mapper/generator/GenTableColumnMapper.xml deleted file mode 100644 index 0d82a0a..0000000 --- a/sync-generator/target/classes/mapper/generator/GenTableColumnMapper.xml +++ /dev/null @@ -1,131 +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/sync-generator/target/classes/mapper/generator/GenTableMapper.xml b/sync-generator/target/classes/mapper/generator/GenTableMapper.xml deleted file mode 100644 index 469d53c..0000000 --- a/sync-generator/target/classes/mapper/generator/GenTableMapper.xml +++ /dev/null @@ -1,221 +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/sync-generator/target/classes/vm/java/controller.java.vm b/sync-generator/target/classes/vm/java/controller.java.vm deleted file mode 100644 index 7d7a138..0000000 --- a/sync-generator/target/classes/vm/java/controller.java.vm +++ /dev/null @@ -1,108 +0,0 @@ -package ${packageName}.controller; - -import java.util.List; -import javax.servlet.http.HttpServletResponse; - -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.PutMapping; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; -import com.lyr.common.annotation.Log; -import com.lyr.common.core.controller.BaseController; -import com.lyr.common.core.domain.AjaxResult; -import com.lyr.common.enums.BusinessType; -import ${packageName}.domain.${ClassName}; -import ${packageName}.service.I${ClassName}Service; -import com.lyr.common.utils.poi.ExcelUtil; -#if($table.crud || $table.sub) -import com.lyr.common.core.page.TableDataInfo; -#elseif($table.tree) -#end - -/** - * ${functionName}Controller - * - * @author ${author} - * @date ${datetime} - */ -@RestController -@RequestMapping("/${moduleName}/${businessName}") -public class ${ClassName}Controller extends BaseController { - @Autowired - private I${ClassName}Service ${className}Service; - -/** - * 查询${functionName}列表 - */ -@PreAuthorize("@ss.hasPermi('${permissionPrefix}:list')") -@GetMapping("/list") - #if($table.crud || $table.sub) - public TableDataInfo list(${ClassName} ${className}) { - - List<${ClassName}> list = ${className}Service.select${ClassName}List(${className}); - return getDataTable(list); - } - #elseif($table.tree) - public AjaxResult list(${ClassName} ${className}) { - List<${ClassName}> list = ${className}Service.select${ClassName}List(${className}); - return success(list); - } - #end - - /** - * 导出${functionName}列表 - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:export')") - @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}数据"); - } - - /** - * 获取${functionName}详细信息 - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:query')") - @GetMapping(value = "/{${pkColumn.javaField}}") - public AjaxResult getInfo(@PathVariable("${pkColumn.javaField}") ${pkColumn.javaType} ${pkColumn.javaField}) { - return success(${className}Service.select${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaField})); - } - - /** - * 新增${functionName} - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:add')") - @Log(title = "${functionName}", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody ${ClassName} ${className}) { - return toAjax(${className}Service.insert${ClassName}(${className})); - } - - /** - * 修改${functionName} - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:edit')") - @Log(title = "${functionName}", businessType = BusinessType.UPDATE) - @PutMapping - public AjaxResult edit(@RequestBody ${ClassName} ${className}) { - return toAjax(${className}Service.update${ClassName}(${className})); - } - - /** - * 删除${functionName} - */ - @PreAuthorize("@ss.hasPermi('${permissionPrefix}:remove')") - @Log(title = "${functionName}", businessType = BusinessType.DELETE) - @DeleteMapping("/{${pkColumn.javaField}s}") - public AjaxResult remove(@PathVariable ${pkColumn.javaType}[] ${pkColumn.javaField}s) { - return toAjax(${className}Service.delete${ClassName}By${pkColumn.capJavaField}s(${pkColumn.javaField}s)); - } -} diff --git a/sync-generator/target/classes/vm/java/domain.java.vm b/sync-generator/target/classes/vm/java/domain.java.vm deleted file mode 100644 index 61f72c7..0000000 --- a/sync-generator/target/classes/vm/java/domain.java.vm +++ /dev/null @@ -1,100 +0,0 @@ -package ${packageName}.domain; - -#foreach ($import in $importList) -import ${import}; -#end -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; -import com.lyr.common.annotation.Excel; -#if($table.crud || $table.sub) -import com.lyr.common.core.domain.BaseEntity; -#elseif($table.tree) -import com.lyr.common.core.domain.TreeEntity; -#end - -/** - * ${functionName}对象 ${tableName} - * - * @author ${author} - * @date ${datetime} - */ -#if($table.crud || $table.sub) - #set($Entity="BaseEntity") -#elseif($table.tree) - #set($Entity="TreeEntity") -#end -public class ${ClassName} extends ${Entity} - { -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 - #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 - #if($table.sub) - /** $table.subTable.functionName信息 */ - private List<${subClassName}> ${subclassName}List; - - #end - #foreach ($column in $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}() { - } - #end - #end - - #if($table.sub) - public List<${subClassName}> get${subClassName}List() { - return ${subclassName}List; - } - - public void set${subClassName}List(List<${subClassName}> ${subclassName}List) { - this.${subclassName}List = ${subclassName}List; - } - - #end -@Override -public String toString() { - return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) - #foreach ($column in $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 - #if($table.sub) - .append("${subclassName}List", get${subClassName}List()) - #end - .toString(); -} -} diff --git a/sync-generator/target/classes/vm/java/mapper.java.vm b/sync-generator/target/classes/vm/java/mapper.java.vm deleted file mode 100644 index 15df48b..0000000 --- a/sync-generator/target/classes/vm/java/mapper.java.vm +++ /dev/null @@ -1,91 +0,0 @@ -package ${packageName}.mapper; - -import java.util.List; - -import ${packageName}.domain.${ClassName}; -#if($table.sub) -import ${packageName}.domain .${subClassName}; -#end - -/** - * ${functionName}Mapper接口 - * - * @author ${author} - * @date ${datetime} - */ -public interface ${ClassName}Mapper { - /** - * 查询${functionName} - * - * @param ${pkColumn.javaField} ${functionName}主键 - * @return ${functionName} - */ - ${ClassName} select${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaType} ${pkColumn.javaField}); - - /** - * 查询${functionName}列表 - * - * @param ${className} ${functionName} - * @return ${functionName}集合 - */ - List<${ClassName}> select${ClassName}List(${ClassName} ${className}); - - /** - * 新增${functionName} - * - * @param ${className} ${functionName} - * @return 结果 - */ - int insert${ClassName}(${ClassName} ${className}); - - /** - * 修改${functionName} - * - * @param ${className} ${functionName} - * @return 结果 - */ - int update${ClassName}(${ClassName} ${className}); - - /** - * 删除${functionName} - * - * @param ${pkColumn.javaField} ${functionName}主键 - * @return 结果 - */ - int delete${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaType} ${pkColumn.javaField}); - - /** - * 批量删除${functionName} - * - * @param ${pkColumn.javaField}s 需要删除的数据主键集合 - * @return 结果 - */ - int delete${ClassName}By${pkColumn.capJavaField}s(${pkColumn.javaType}[] ${pkColumn.javaField}s); - #if($table.sub) - - /** - * 批量删除${subTable.functionName} - * - * @param ${pkColumn.javaField}s 需要删除的数据主键集合 - * @return 结果 - */ - int delete${subClassName}By${subTableFkClassName}s(${pkColumn.javaType}[] ${pkColumn.javaField}s); - - /** - * 批量新增${subTable.functionName} - * - * @param ${subclassName}List ${subTable.functionName}列表 - * @return 结果 - */ - int batch${subClassName}(List<${subClassName}> ${subclassName}List); - - - /** - * 通过${functionName}主键删除${subTable.functionName}信息 - * - * @param ${pkColumn.javaField} ${functionName}ID - * @return 结果 - */ - int delete${subClassName}By${subTableFkClassName}(${pkColumn.javaType} ${pkColumn.javaField}); - #end -} diff --git a/sync-generator/target/classes/vm/java/service.java.vm b/sync-generator/target/classes/vm/java/service.java.vm deleted file mode 100644 index 1189ef2..0000000 --- a/sync-generator/target/classes/vm/java/service.java.vm +++ /dev/null @@ -1,61 +0,0 @@ -package ${packageName}.service; - -import java.util.List; - -import ${packageName}.domain .${ClassName}; - -/** - * ${functionName}Service接口 - * - * @author ${author} - * @date ${datetime} - */ -public interface I${ClassName}Service { - /** - * 查询${functionName} - * - * @param ${pkColumn.javaField} ${functionName}主键 - * @return ${functionName} - */ - ${ClassName} select${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaType} ${pkColumn.javaField}); - - /** - * 查询${functionName}列表 - * - * @param ${className} ${functionName} - * @return ${functionName}集合 - */ - List<${ClassName}> select${ClassName}List(${ClassName} ${className}); - - /** - * 新增${functionName} - * - * @param ${className} ${functionName} - * @return 结果 - */ - int insert${ClassName}(${ClassName} ${className}); - - /** - * 修改${functionName} - * - * @param ${className} ${functionName} - * @return 结果 - */ - int update${ClassName}(${ClassName} ${className}); - - /** - * 批量删除${functionName} - * - * @param ${pkColumn.javaField}s 需要删除的${functionName}主键集合 - * @return 结果 - */ - int delete${ClassName}By${pkColumn.capJavaField}s(${pkColumn.javaType}[] ${pkColumn.javaField}s); - - /** - * 删除${functionName}信息 - * - * @param ${pkColumn.javaField} ${functionName}主键 - * @return 结果 - */ - int delete${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaType} ${pkColumn.javaField}); -} diff --git a/sync-generator/target/classes/vm/java/serviceImpl.java.vm b/sync-generator/target/classes/vm/java/serviceImpl.java.vm deleted file mode 100644 index bc4320e..0000000 --- a/sync-generator/target/classes/vm/java/serviceImpl.java.vm +++ /dev/null @@ -1,161 +0,0 @@ -package ${packageName}.service.impl; - -import java.util.List; - #foreach ($column in $columns) - #if($column.javaField == 'createTime' || $column.javaField == 'updateTime') - import com.lyr.common.utils.DateUtils; - #break - #end - #end -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - #if($table.sub) - import java.util.ArrayList; - - import com.lyr.common.utils.StringUtils; - import org.springframework.transaction.annotation.Transactional; - import ${packageName}.domain.${subClassName}; - #end -import ${packageName}.mapper.${ClassName}Mapper; -import ${packageName}.domain.${ClassName}; -import ${packageName}.service.I${ClassName}Service; - -/** - * ${functionName}Service业务层处理 - * - * @author ${author} - * @date ${datetime} - */ -@Service -public class ${ClassName}ServiceImpl implements I${ClassName}Service { - @Autowired - private ${ClassName}Mapper ${className}Mapper; - - /** - * 查询${functionName} - * - * @param ${pkColumn.javaField} ${functionName}主键 - * @return ${functionName} - */ - @Override - public ${ClassName} select${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaType} ${pkColumn.javaField}) { - return ${className}Mapper.select${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaField}); - } - - /** - * 查询${functionName}列表 - * - * @param ${className} ${functionName} - * @return ${functionName} - */ - @Override - public List<${ClassName}> select${ClassName}List(${ClassName} ${className}) { - return ${className}Mapper.select${ClassName}List(${className}); - } - - /** - * 新增${functionName} - * - * @param ${className} ${functionName} - * @return 结果 - */ - #if($table.sub) - @Transactional - #end - @Override - public int insert${ClassName}(${ClassName} ${className}) { - #foreach ($column in $columns) - #if($column.javaField == 'createTime') - ${className}.setCreateTime(DateUtils.getNowDate()); - #end - #end - #if($table.sub) - int rows = ${className}Mapper.insert${ClassName}(${className}); - insert${subClassName}(${className}); - return rows; - #else - return ${className}Mapper.insert${ClassName}(${className}); - #end - } - - /** - * 修改${functionName} - * - * @param ${className} ${functionName} - * @return 结果 - */ - #if($table.sub) - @Transactional - #end - @Override - public int update${ClassName}(${ClassName} ${className}) { - #foreach ($column in $columns) - #if($column.javaField == 'updateTime') - ${className}.setUpdateTime(DateUtils.getNowDate()); - #end - #end - #if($table.sub) - ${className}Mapper.delete${subClassName}By${subTableFkClassName}(${className}.get${pkColumn.capJavaField}()) - ; - insert${subClassName}(${className}); - #end - return ${className}Mapper.update${ClassName}(${className}); - } - - /** - * 批量删除${functionName} - * - * @param ${pkColumn.javaField}s 需要删除的${functionName}主键 - * @return 结果 - */ - #if($table.sub) - @Transactional - #end - @Override - public int delete${ClassName}By${pkColumn.capJavaField}s(${pkColumn.javaType}[] ${pkColumn.javaField}s) { - #if($table.sub) - ${className}Mapper.delete${subClassName}By${subTableFkClassName}s(${pkColumn.javaField}s); - #end - return ${className}Mapper.delete${ClassName}By${pkColumn.capJavaField}s(${pkColumn.javaField}s); - } - - /** - * 删除${functionName}信息 - * - * @param ${pkColumn.javaField} ${functionName}主键 - * @return 结果 - */ - #if($table.sub) - @Transactional - #end - @Override - public int delete${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaType} ${pkColumn.javaField}) { - #if($table.sub) - ${className}Mapper.delete${subClassName}By${subTableFkClassName}(${pkColumn.javaField}); - #end - return ${className}Mapper.delete${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaField}); - } - #if($table.sub) - - /** - * 新增${subTable.functionName}信息 - * - * @param ${className} ${functionName}对象 - */ - public void insert${subClassName}(${ClassName} ${className}) { - List<${subClassName}> ${subclassName}List = ${className}.get${subClassName}List(); - ${pkColumn.javaType} ${pkColumn.javaField} = ${className}.get${pkColumn.capJavaField}(); - if (StringUtils.isNotNull(${subclassName}List)) { - List<${subClassName}> list = new ArrayList<${subClassName}>(); - for (${subClassName} ${subclassName} :${subclassName}List) - { - ${subclassName}.set${subTableFkClassName}(${pkColumn.javaField}); - list.add(${subclassName}); - } - if (list.size() > 0) { - ${className}Mapper.batch${subClassName}(list); - } - } - } - #end -} diff --git a/sync-generator/target/classes/vm/java/sub-domain.java.vm b/sync-generator/target/classes/vm/java/sub-domain.java.vm deleted file mode 100644 index 13e49da..0000000 --- a/sync-generator/target/classes/vm/java/sub-domain.java.vm +++ /dev/null @@ -1,77 +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.lyr.common.annotation.Excel; -import com.lyr.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/sync-generator/target/classes/vm/js/api.js.vm b/sync-generator/target/classes/vm/js/api.js.vm deleted file mode 100644 index 346c95e..0000000 --- a/sync-generator/target/classes/vm/js/api.js.vm +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询${functionName}列表 -export function list${BusinessName}(query) { - return request({ - url: '/${moduleName}/${businessName}/list', - method: 'get', - params: query - }) -} - -// 查询${functionName}详细 -export function get${BusinessName}(${pkColumn.javaField}) { - return request({ - url: '/${moduleName}/${businessName}/' + ${pkColumn.javaField}, - method: 'get' - }) -} - -// 新增${functionName} -export function add${BusinessName}(data) { - return request({ - url: '/${moduleName}/${businessName}', - method: 'post', - data: data - }) -} - -// 修改${functionName} -export function update${BusinessName}(data) { - return request({ - url: '/${moduleName}/${businessName}', - method: 'put', - data: data - }) -} - -// 删除${functionName} -export function del${BusinessName}(${pkColumn.javaField}) { - return request({ - url: '/${moduleName}/${businessName}/' + ${pkColumn.javaField}, - method: 'delete' - }) -} diff --git a/sync-generator/target/classes/vm/sql/sql.vm b/sync-generator/target/classes/vm/sql/sql.vm deleted file mode 100644 index 0575583..0000000 --- a/sync-generator/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/sync-generator/target/classes/vm/vue/index-tree.vue.vm b/sync-generator/target/classes/vm/vue/index-tree.vue.vm deleted file mode 100644 index d8b6d88..0000000 --- a/sync-generator/target/classes/vm/vue/index-tree.vue.vm +++ /dev/null @@ -1,570 +0,0 @@ - - - diff --git a/sync-generator/target/classes/vm/vue/index.vue.vm b/sync-generator/target/classes/vm/vue/index.vue.vm deleted file mode 100644 index 9cc807e..0000000 --- a/sync-generator/target/classes/vm/vue/index.vue.vm +++ /dev/null @@ -1,742 +0,0 @@ - - - diff --git a/sync-generator/target/classes/vm/vue/v3/index-tree.vue.vm b/sync-generator/target/classes/vm/vue/v3/index-tree.vue.vm deleted file mode 100644 index 12f3af3..0000000 --- a/sync-generator/target/classes/vm/vue/v3/index-tree.vue.vm +++ /dev/null @@ -1,541 +0,0 @@ - - - diff --git a/sync-generator/target/classes/vm/vue/v3/index.vue.vm b/sync-generator/target/classes/vm/vue/v3/index.vue.vm deleted file mode 100644 index 18f6c66..0000000 --- a/sync-generator/target/classes/vm/vue/v3/index.vue.vm +++ /dev/null @@ -1,728 +0,0 @@ - - - diff --git a/sync-generator/target/classes/vm/xml/mapper.xml.vm b/sync-generator/target/classes/vm/xml/mapper.xml.vm deleted file mode 100644 index 771fafa..0000000 --- a/sync-generator/target/classes/vm/xml/mapper.xml.vm +++ /dev/null @@ -1,171 +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} - - - - - - #if($table.sub) - - - #end - - - insert into ${tableName} - - #foreach($column in $columns) - #if($column.columnName != $pkColumn.columnName || !$pkColumn.increment) - $column.columnName, - - #end - #end - - - #foreach($column in $columns) - #if($column.columnName != $pkColumn.columnName || !$pkColumn.increment) - #{$column.javaField}, - - #end - #end - - - - - update ${tableName} - - #foreach($column in $columns) - #if($column.columnName != $pkColumn.columnName) - $column.columnName = - #{$column.javaField}, - - #end - #end - - where ${pkColumn.columnName} = #{${pkColumn.javaField}} - - - - delete from ${tableName} where ${pkColumn.columnName} = #{${pkColumn.javaField}} - - - - delete from ${tableName} where ${pkColumn.columnName} in - - #{${pkColumn.javaField}} - - - #if($table.sub) - - - delete from ${subTableName} where ${subTableFkName} in - - #{${subTableFkclassName}} - - - - - delete from ${subTableName} where ${subTableFkName} = #{${subTableFkclassName}} - - - - insert into ${subTableName} - (#foreach($column in $subTable.columns) $column.columnName#if($foreach.count != $subTable.columns.size()) - ,#end#end) values - - (#foreach($column in $subTable.columns) #{item.$column.javaField - }#if($foreach.count != $subTable.columns.size()),#end#end) - - - #end - \ No newline at end of file diff --git a/sync-quartz/target/classes/com/lyr/quartz/controller/SysJobController.class b/sync-quartz/target/classes/com/lyr/quartz/controller/SysJobController.class deleted file mode 100644 index 13405dc..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/controller/SysJobController.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/controller/SysJobLogController.class b/sync-quartz/target/classes/com/lyr/quartz/controller/SysJobLogController.class deleted file mode 100644 index 2d2631b..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/controller/SysJobLogController.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/domain/SysJob.class b/sync-quartz/target/classes/com/lyr/quartz/domain/SysJob.class deleted file mode 100644 index 4d6cf3f..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/domain/SysJob.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/domain/SysJobLog.class b/sync-quartz/target/classes/com/lyr/quartz/domain/SysJobLog.class deleted file mode 100644 index 1f01ded..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/domain/SysJobLog.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/mapper/SysJobLogMapper.class b/sync-quartz/target/classes/com/lyr/quartz/mapper/SysJobLogMapper.class deleted file mode 100644 index 502a9dc..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/mapper/SysJobLogMapper.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/mapper/SysJobMapper.class b/sync-quartz/target/classes/com/lyr/quartz/mapper/SysJobMapper.class deleted file mode 100644 index 3f635bf..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/mapper/SysJobMapper.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/service/ISysJobLogService.class b/sync-quartz/target/classes/com/lyr/quartz/service/ISysJobLogService.class deleted file mode 100644 index 00c9ee7..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/service/ISysJobLogService.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/service/ISysJobService.class b/sync-quartz/target/classes/com/lyr/quartz/service/ISysJobService.class deleted file mode 100644 index 2a03167..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/service/ISysJobService.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/service/impl/SysJobLogServiceImpl.class b/sync-quartz/target/classes/com/lyr/quartz/service/impl/SysJobLogServiceImpl.class deleted file mode 100644 index 656e275..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/service/impl/SysJobLogServiceImpl.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/service/impl/SysJobServiceImpl.class b/sync-quartz/target/classes/com/lyr/quartz/service/impl/SysJobServiceImpl.class deleted file mode 100644 index 5ef3461..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/service/impl/SysJobServiceImpl.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/task/RyTask.class b/sync-quartz/target/classes/com/lyr/quartz/task/RyTask.class deleted file mode 100644 index 0eba06f..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/task/RyTask.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/util/AbstractQuartzJob.class b/sync-quartz/target/classes/com/lyr/quartz/util/AbstractQuartzJob.class deleted file mode 100644 index 2fd3ff8..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/util/AbstractQuartzJob.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/util/CronUtils.class b/sync-quartz/target/classes/com/lyr/quartz/util/CronUtils.class deleted file mode 100644 index a4b02da..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/util/CronUtils.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/util/JobInvokeUtil.class b/sync-quartz/target/classes/com/lyr/quartz/util/JobInvokeUtil.class deleted file mode 100644 index 26b9ef3..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/util/JobInvokeUtil.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/util/QuartzDisallowConcurrentExecution.class b/sync-quartz/target/classes/com/lyr/quartz/util/QuartzDisallowConcurrentExecution.class deleted file mode 100644 index a590885..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/util/QuartzDisallowConcurrentExecution.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/util/QuartzJobExecution.class b/sync-quartz/target/classes/com/lyr/quartz/util/QuartzJobExecution.class deleted file mode 100644 index e44d94b..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/util/QuartzJobExecution.class and /dev/null differ diff --git a/sync-quartz/target/classes/com/lyr/quartz/util/ScheduleUtils.class b/sync-quartz/target/classes/com/lyr/quartz/util/ScheduleUtils.class deleted file mode 100644 index eebadae..0000000 Binary files a/sync-quartz/target/classes/com/lyr/quartz/util/ScheduleUtils.class and /dev/null differ diff --git a/sync-quartz/target/classes/mapper/quartz/SysJobLogMapper.xml b/sync-quartz/target/classes/mapper/quartz/SysJobLogMapper.xml deleted file mode 100644 index d9faa8f..0000000 --- a/sync-quartz/target/classes/mapper/quartz/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/sync-quartz/target/classes/mapper/quartz/SysJobMapper.xml b/sync-quartz/target/classes/mapper/quartz/SysJobMapper.xml deleted file mode 100644 index 0dc14ea..0000000 --- a/sync-quartz/target/classes/mapper/quartz/SysJobMapper.xml +++ /dev/null @@ -1,112 +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/sync-system/target/classes/com/lyr/system/domain/SysCache.class b/sync-system/target/classes/com/lyr/system/domain/SysCache.class deleted file mode 100644 index 67cd4ac..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/SysCache.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/SysConfig.class b/sync-system/target/classes/com/lyr/system/domain/SysConfig.class deleted file mode 100644 index 9be9650..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/SysConfig.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/SysLogininfor.class b/sync-system/target/classes/com/lyr/system/domain/SysLogininfor.class deleted file mode 100644 index 1e6c9bb..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/SysLogininfor.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/SysNotice.class b/sync-system/target/classes/com/lyr/system/domain/SysNotice.class deleted file mode 100644 index c731ae9..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/SysNotice.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/SysOperLog.class b/sync-system/target/classes/com/lyr/system/domain/SysOperLog.class deleted file mode 100644 index 3d648e8..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/SysOperLog.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/SysPost.class b/sync-system/target/classes/com/lyr/system/domain/SysPost.class deleted file mode 100644 index de33722..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/SysPost.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/SysRoleDept.class b/sync-system/target/classes/com/lyr/system/domain/SysRoleDept.class deleted file mode 100644 index 2771645..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/SysRoleDept.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/SysRoleMenu.class b/sync-system/target/classes/com/lyr/system/domain/SysRoleMenu.class deleted file mode 100644 index befb805..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/SysRoleMenu.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/SysUserOnline.class b/sync-system/target/classes/com/lyr/system/domain/SysUserOnline.class deleted file mode 100644 index 9ed9db0..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/SysUserOnline.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/SysUserPost.class b/sync-system/target/classes/com/lyr/system/domain/SysUserPost.class deleted file mode 100644 index 57d367f..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/SysUserPost.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/SysUserRole.class b/sync-system/target/classes/com/lyr/system/domain/SysUserRole.class deleted file mode 100644 index 5e49636..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/SysUserRole.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/vo/MetaVo.class b/sync-system/target/classes/com/lyr/system/domain/vo/MetaVo.class deleted file mode 100644 index e767773..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/vo/MetaVo.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/domain/vo/RouterVo.class b/sync-system/target/classes/com/lyr/system/domain/vo/RouterVo.class deleted file mode 100644 index f1a6028..0000000 Binary files a/sync-system/target/classes/com/lyr/system/domain/vo/RouterVo.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysConfigMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysConfigMapper.class deleted file mode 100644 index 3c3fb17..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysConfigMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysDeptMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysDeptMapper.class deleted file mode 100644 index 6e0c07e..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysDeptMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysDictDataMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysDictDataMapper.class deleted file mode 100644 index 0921ae5..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysDictDataMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysDictTypeMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysDictTypeMapper.class deleted file mode 100644 index c4abbe8..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysDictTypeMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysLogininforMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysLogininforMapper.class deleted file mode 100644 index 18e2000..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysLogininforMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysMenuMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysMenuMapper.class deleted file mode 100644 index b6a0fdf..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysMenuMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysNoticeMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysNoticeMapper.class deleted file mode 100644 index 1d3743a..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysNoticeMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysOperLogMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysOperLogMapper.class deleted file mode 100644 index 8f7f893..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysOperLogMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysPostMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysPostMapper.class deleted file mode 100644 index 17a7f6f..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysPostMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysRoleDeptMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysRoleDeptMapper.class deleted file mode 100644 index 389e017..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysRoleDeptMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysRoleMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysRoleMapper.class deleted file mode 100644 index adb6607..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysRoleMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysRoleMenuMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysRoleMenuMapper.class deleted file mode 100644 index a13a78b..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysRoleMenuMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysUserMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysUserMapper.class deleted file mode 100644 index 9e52dc3..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysUserMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysUserPostMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysUserPostMapper.class deleted file mode 100644 index 6b4962a..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysUserPostMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/mapper/SysUserRoleMapper.class b/sync-system/target/classes/com/lyr/system/mapper/SysUserRoleMapper.class deleted file mode 100644 index aeea467..0000000 Binary files a/sync-system/target/classes/com/lyr/system/mapper/SysUserRoleMapper.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysConfigService.class b/sync-system/target/classes/com/lyr/system/service/ISysConfigService.class deleted file mode 100644 index 7862f07..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysConfigService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysDeptService.class b/sync-system/target/classes/com/lyr/system/service/ISysDeptService.class deleted file mode 100644 index 5ac325e..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysDeptService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysDictDataService.class b/sync-system/target/classes/com/lyr/system/service/ISysDictDataService.class deleted file mode 100644 index 3926bb3..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysDictDataService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysDictTypeService.class b/sync-system/target/classes/com/lyr/system/service/ISysDictTypeService.class deleted file mode 100644 index 13bc354..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysDictTypeService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysLogininforService.class b/sync-system/target/classes/com/lyr/system/service/ISysLogininforService.class deleted file mode 100644 index 53f75b0..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysLogininforService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysMenuService.class b/sync-system/target/classes/com/lyr/system/service/ISysMenuService.class deleted file mode 100644 index e753013..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysMenuService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysNoticeService.class b/sync-system/target/classes/com/lyr/system/service/ISysNoticeService.class deleted file mode 100644 index 317b851..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysNoticeService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysOperLogService.class b/sync-system/target/classes/com/lyr/system/service/ISysOperLogService.class deleted file mode 100644 index 7492335..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysOperLogService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysPostService.class b/sync-system/target/classes/com/lyr/system/service/ISysPostService.class deleted file mode 100644 index ac6e160..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysPostService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysRoleService.class b/sync-system/target/classes/com/lyr/system/service/ISysRoleService.class deleted file mode 100644 index 25b5e4e..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysRoleService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysUserOnlineService.class b/sync-system/target/classes/com/lyr/system/service/ISysUserOnlineService.class deleted file mode 100644 index 3bd1805..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysUserOnlineService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/ISysUserService.class b/sync-system/target/classes/com/lyr/system/service/ISysUserService.class deleted file mode 100644 index f648f6a..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/ISysUserService.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysConfigServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysConfigServiceImpl.class deleted file mode 100644 index 9f8b9e0..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysConfigServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysDeptServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysDeptServiceImpl.class deleted file mode 100644 index df624b1..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysDeptServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysDictDataServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysDictDataServiceImpl.class deleted file mode 100644 index 3625730..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysDictDataServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysDictTypeServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysDictTypeServiceImpl.class deleted file mode 100644 index a75662e..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysDictTypeServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysLogininforServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysLogininforServiceImpl.class deleted file mode 100644 index 4b01ad6..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysLogininforServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysMenuServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysMenuServiceImpl.class deleted file mode 100644 index f693a23..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysMenuServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysNoticeServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysNoticeServiceImpl.class deleted file mode 100644 index 0ca7f34..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysNoticeServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysOperLogServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysOperLogServiceImpl.class deleted file mode 100644 index cd9f1cf..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysOperLogServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysPostServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysPostServiceImpl.class deleted file mode 100644 index 6415414..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysPostServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysRoleServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysRoleServiceImpl.class deleted file mode 100644 index 1d4b101..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysRoleServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysUserOnlineServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysUserOnlineServiceImpl.class deleted file mode 100644 index 2bfc0e3..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysUserOnlineServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/com/lyr/system/service/impl/SysUserServiceImpl.class b/sync-system/target/classes/com/lyr/system/service/impl/SysUserServiceImpl.class deleted file mode 100644 index 78fc20f..0000000 Binary files a/sync-system/target/classes/com/lyr/system/service/impl/SysUserServiceImpl.class and /dev/null differ diff --git a/sync-system/target/classes/mapper/system/SysConfigMapper.xml b/sync-system/target/classes/mapper/system/SysConfigMapper.xml deleted file mode 100644 index b4d283b..0000000 --- a/sync-system/target/classes/mapper/system/SysConfigMapper.xml +++ /dev/null @@ -1,128 +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/sync-system/target/classes/mapper/system/SysDeptMapper.xml b/sync-system/target/classes/mapper/system/SysDeptMapper.xml deleted file mode 100644 index e68b16f..0000000 --- a/sync-system/target/classes/mapper/system/SysDeptMapper.xml +++ /dev/null @@ -1,193 +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/sync-system/target/classes/mapper/system/SysDictDataMapper.xml b/sync-system/target/classes/mapper/system/SysDictDataMapper.xml deleted file mode 100644 index 5456261..0000000 --- a/sync-system/target/classes/mapper/system/SysDictDataMapper.xml +++ /dev/null @@ -1,125 +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/sync-system/target/classes/mapper/system/SysDictTypeMapper.xml b/sync-system/target/classes/mapper/system/SysDictTypeMapper.xml deleted file mode 100644 index 7a10e10..0000000 --- a/sync-system/target/classes/mapper/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/sync-system/target/classes/mapper/system/SysLogininforMapper.xml b/sync-system/target/classes/mapper/system/SysLogininforMapper.xml deleted file mode 100644 index 46426c9..0000000 --- a/sync-system/target/classes/mapper/system/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/sync-system/target/classes/mapper/system/SysMenuMapper.xml b/sync-system/target/classes/mapper/system/SysMenuMapper.xml deleted file mode 100644 index 3bb3552..0000000 --- a/sync-system/target/classes/mapper/system/SysMenuMapper.xml +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - select menu_id, menu_name, parent_id, order_num, path, component, `query`, route_name, 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}, - route_name = #{routeName}, - 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`, - route_name, - is_frame, - is_cache, - menu_type, - visible, - status, - perms, - icon, - remark, - create_by, - create_time - )values( - #{menuId}, - #{parentId}, - #{menuName}, - #{orderNum}, - #{path}, - #{component}, - #{query}, - #{routeName}, - #{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/sync-system/target/classes/mapper/system/SysNoticeMapper.xml b/sync-system/target/classes/mapper/system/SysNoticeMapper.xml deleted file mode 100644 index 6d454d2..0000000 --- a/sync-system/target/classes/mapper/system/SysNoticeMapper.xml +++ /dev/null @@ -1,90 +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/sync-system/target/classes/mapper/system/SysOperLogMapper.xml b/sync-system/target/classes/mapper/system/SysOperLogMapper.xml deleted file mode 100644 index 9c64676..0000000 --- a/sync-system/target/classes/mapper/system/SysOperLogMapper.xml +++ /dev/null @@ -1,91 +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/sync-system/target/classes/mapper/system/SysPostMapper.xml b/sync-system/target/classes/mapper/system/SysPostMapper.xml deleted file mode 100644 index b774a89..0000000 --- a/sync-system/target/classes/mapper/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/sync-system/target/classes/mapper/system/SysRoleDeptMapper.xml b/sync-system/target/classes/mapper/system/SysRoleDeptMapper.xml deleted file mode 100644 index 3a70fa2..0000000 --- a/sync-system/target/classes/mapper/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/sync-system/target/classes/mapper/system/SysRoleMapper.xml b/sync-system/target/classes/mapper/system/SysRoleMapper.xml deleted file mode 100644 index 889a884..0000000 --- a/sync-system/target/classes/mapper/system/SysRoleMapper.xml +++ /dev/null @@ -1,153 +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/sync-system/target/classes/mapper/system/SysRoleMenuMapper.xml b/sync-system/target/classes/mapper/system/SysRoleMenuMapper.xml deleted file mode 100644 index 799dd94..0000000 --- a/sync-system/target/classes/mapper/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/sync-system/target/classes/mapper/system/SysUserMapper.xml b/sync-system/target/classes/mapper/system/SysUserMapper.xml deleted file mode 100644 index c405512..0000000 --- a/sync-system/target/classes/mapper/system/SysUserMapper.xml +++ /dev/null @@ -1,226 +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/sync-system/target/classes/mapper/system/SysUserPostMapper.xml b/sync-system/target/classes/mapper/system/SysUserPostMapper.xml deleted file mode 100644 index 2502d7e..0000000 --- a/sync-system/target/classes/mapper/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/sync-system/target/classes/mapper/system/SysUserRoleMapper.xml b/sync-system/target/classes/mapper/system/SysUserRoleMapper.xml deleted file mode 100644 index 48a090c..0000000 --- a/sync-system/target/classes/mapper/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