diff --git a/mqtts-api/mqtts-api-system/pom.xml b/mqtts-api/mqtts-api-system/pom.xml index 05af78df82c2f909df3f1227a308e8e93f203733..406e8f3140c2656186564d35a1e4a4a01cdfb23f 100644 --- a/mqtts-api/mqtts-api-system/pom.xml +++ b/mqtts-api/mqtts-api-system/pom.xml @@ -17,9 +17,9 @@ - + - com.mqtts + net.mqtts mqtts-common-core diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/MqttsSystemApplication.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/MqttsSystemApplication.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/MqttsSystemApplication.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/MqttsSystemApplication.java index c2509fab4374ddfee4c073969012d0b52f943493..816b2346935008d1e3175427fde402c4b16ec10d 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/MqttsSystemApplication.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/MqttsSystemApplication.java @@ -1,4 +1,4 @@ -package com.ruoyi.system; +package net.mqtts.system; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysConfigController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysConfigController.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysConfigController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysConfigController.java index 7f09f949ac92a9df57c8aad57fe96055aa5a3077..9eefeba8ddf5fe8b43d84612b847a26ff40baf98 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysConfigController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysConfigController.java @@ -1,8 +1,10 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.io.IOException; import java.util.List; import javax.servlet.http.HttpServletResponse; + +import net.mqtts.system.service.ISysConfigService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.DeleteMapping; @@ -22,8 +24,7 @@ import com.ruoyi.common.core.web.page.TableDataInfo; import com.ruoyi.common.log.annotation.Log; import com.ruoyi.common.log.enums.BusinessType; import com.ruoyi.common.security.annotation.PreAuthorize; -import com.ruoyi.system.domain.SysConfig; -import com.ruoyi.system.service.ISysConfigService; +import net.mqtts.system.domain.SysConfig; /** * 参数配置 信息操作处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysDeptController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysDeptController.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysDeptController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysDeptController.java index 5526da41d2c753cd6c9bd51364191cd676ff6df6..c7e725962c738ce2476332270ec4c777a91ae489 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysDeptController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysDeptController.java @@ -1,7 +1,9 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.util.Iterator; import java.util.List; + +import net.mqtts.system.service.ISysDeptService; import org.apache.commons.lang3.ArrayUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; @@ -22,7 +24,6 @@ import com.ruoyi.common.log.annotation.Log; import com.ruoyi.common.log.enums.BusinessType; import com.ruoyi.common.security.annotation.PreAuthorize; import com.ruoyi.system.api.domain.SysDept; -import com.ruoyi.system.service.ISysDeptService; /** * 部门信息 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysDictDataController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysDictDataController.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysDictDataController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysDictDataController.java index f690c1facf8c59a8849c0316f90f403ae4b0f418..949ddeede217baae5bbf82c5ea79b67e71639be5 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysDictDataController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysDictDataController.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.io.IOException; import java.util.ArrayList; @@ -24,8 +24,8 @@ import com.ruoyi.common.log.annotation.Log; import com.ruoyi.common.log.enums.BusinessType; import com.ruoyi.common.security.annotation.PreAuthorize; import com.ruoyi.system.api.domain.SysDictData; -import com.ruoyi.system.service.ISysDictDataService; -import com.ruoyi.system.service.ISysDictTypeService; +import net.mqtts.system.service.ISysDictDataService; +import net.mqtts.system.service.ISysDictTypeService; /** * 数据字典信息 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysDictTypeController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysDictTypeController.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysDictTypeController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysDictTypeController.java index 78e375aec028057afc08ac5d63a3019106409429..1b162d37f44a256c771bb8427a9324e169d2253a 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysDictTypeController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysDictTypeController.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.io.IOException; import java.util.List; @@ -23,7 +23,7 @@ import com.ruoyi.common.log.annotation.Log; import com.ruoyi.common.log.enums.BusinessType; import com.ruoyi.common.security.annotation.PreAuthorize; import com.ruoyi.system.api.domain.SysDictType; -import com.ruoyi.system.service.ISysDictTypeService; +import net.mqtts.system.service.ISysDictTypeService; /** * 数据字典信息 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysLogininforController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysLogininforController.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysLogininforController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysLogininforController.java index fead2cdd4cde2f53095c86fe19fcb59872702199..a13c04a741c792b97d53214adf5dc87b312cb466 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysLogininforController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysLogininforController.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.io.IOException; import java.util.List; @@ -20,7 +20,7 @@ import com.ruoyi.common.log.enums.BusinessType; import com.ruoyi.common.security.annotation.InnerAuth; import com.ruoyi.common.security.annotation.PreAuthorize; import com.ruoyi.system.api.domain.SysLogininfor; -import com.ruoyi.system.service.ISysLogininforService; +import net.mqtts.system.service.ISysLogininforService; /** * 系统访问记录 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysMenuController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysMenuController.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysMenuController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysMenuController.java index da064b4d091774aa6392d3a36267bdebb6d1d6df..d3729462df9ab453d5f1bd57d4d7990f2c30a491 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysMenuController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysMenuController.java @@ -1,6 +1,8 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.util.List; + +import net.mqtts.system.service.ISysMenuService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.DeleteMapping; @@ -19,8 +21,7 @@ import com.ruoyi.common.core.web.domain.AjaxResult; import com.ruoyi.common.log.annotation.Log; import com.ruoyi.common.log.enums.BusinessType; import com.ruoyi.common.security.annotation.PreAuthorize; -import com.ruoyi.system.domain.SysMenu; -import com.ruoyi.system.service.ISysMenuService; +import net.mqtts.system.domain.SysMenu; /** * 菜单信息 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysNoticeController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysNoticeController.java similarity index 95% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysNoticeController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysNoticeController.java index ab474732954dfef4f656da3259d8b4c1a88aff00..4cad5299bbd6015d5e7b11e94bfa5a8c2220076e 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysNoticeController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysNoticeController.java @@ -1,6 +1,8 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.util.List; + +import net.mqtts.system.service.ISysNoticeService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.DeleteMapping; @@ -18,8 +20,7 @@ import com.ruoyi.common.core.web.page.TableDataInfo; import com.ruoyi.common.log.annotation.Log; import com.ruoyi.common.log.enums.BusinessType; import com.ruoyi.common.security.annotation.PreAuthorize; -import com.ruoyi.system.domain.SysNotice; -import com.ruoyi.system.service.ISysNoticeService; +import net.mqtts.system.domain.SysNotice; /** * 公告 信息操作处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysOperlogController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysOperlogController.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysOperlogController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysOperlogController.java index a110b3a0dc49abe84de719a2631572a7db55d593..570d95482a71e6d52bbf888c123bd9c7639d0915 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysOperlogController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysOperlogController.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.io.IOException; import java.util.List; @@ -20,7 +20,7 @@ import com.ruoyi.common.log.enums.BusinessType; import com.ruoyi.common.security.annotation.InnerAuth; import com.ruoyi.common.security.annotation.PreAuthorize; import com.ruoyi.system.api.domain.SysOperLog; -import com.ruoyi.system.service.ISysOperLogService; +import net.mqtts.system.service.ISysOperLogService; /** * 操作日志记录 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysPostController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysPostController.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysPostController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysPostController.java index f92bd68ce4151640b1e0ea67ff86d9926c882d34..1f231791cf5430fe4c2429f5b8d6038c62e2e62e 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysPostController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysPostController.java @@ -1,8 +1,10 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.io.IOException; import java.util.List; import javax.servlet.http.HttpServletResponse; + +import net.mqtts.system.service.ISysPostService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.DeleteMapping; @@ -22,8 +24,7 @@ import com.ruoyi.common.core.web.page.TableDataInfo; import com.ruoyi.common.log.annotation.Log; import com.ruoyi.common.log.enums.BusinessType; import com.ruoyi.common.security.annotation.PreAuthorize; -import com.ruoyi.system.domain.SysPost; -import com.ruoyi.system.service.ISysPostService; +import net.mqtts.system.domain.SysPost; /** * 岗位信息操作处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysProfileController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysProfileController.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysProfileController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysProfileController.java index 6160c15e0d88af913dcb1b61eea1b7b0d1d96910..292a4fded29ddb688254a84e942475481e3dc4eb 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysProfileController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysProfileController.java @@ -1,6 +1,8 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.io.IOException; + +import net.mqtts.system.service.ISysUserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; @@ -24,7 +26,6 @@ import com.ruoyi.system.api.RemoteFileService; import com.ruoyi.system.api.domain.SysFile; import com.ruoyi.system.api.domain.SysUser; import com.ruoyi.system.api.model.LoginUser; -import com.ruoyi.system.service.ISysUserService; /** * 个人信息 业务处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysRoleController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysRoleController.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysRoleController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysRoleController.java index 26037510473fdcf93770c11ee6f4e24cedf33c5f..b56d0e3ccc64d1e382fa5d253e915377b5bacae5 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysRoleController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysRoleController.java @@ -1,8 +1,11 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.io.IOException; import java.util.List; import javax.servlet.http.HttpServletResponse; + +import net.mqtts.system.service.ISysRoleService; +import net.mqtts.system.service.ISysUserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.DeleteMapping; @@ -24,9 +27,7 @@ import com.ruoyi.common.log.enums.BusinessType; import com.ruoyi.common.security.annotation.PreAuthorize; import com.ruoyi.system.api.domain.SysRole; import com.ruoyi.system.api.domain.SysUser; -import com.ruoyi.system.domain.SysUserRole; -import com.ruoyi.system.service.ISysRoleService; -import com.ruoyi.system.service.ISysUserService; +import net.mqtts.system.domain.SysUserRole; /** * 角色信息 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysUserController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysUserController.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysUserController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysUserController.java index c57e7bea33abe8c7c708c673ad35886667c12602..9392a89d6daaa177166898ff01201587e10e4788 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysUserController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysUserController.java @@ -1,10 +1,11 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.io.IOException; import java.util.List; import java.util.Set; import java.util.stream.Collectors; import javax.servlet.http.HttpServletResponse; + import org.apache.commons.lang3.ArrayUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; @@ -32,11 +33,11 @@ import com.ruoyi.common.security.annotation.PreAuthorize; import com.ruoyi.system.api.domain.SysRole; import com.ruoyi.system.api.domain.SysUser; import com.ruoyi.system.api.model.LoginUser; -import com.ruoyi.system.service.ISysConfigService; -import com.ruoyi.system.service.ISysPermissionService; -import com.ruoyi.system.service.ISysPostService; -import com.ruoyi.system.service.ISysRoleService; -import com.ruoyi.system.service.ISysUserService; +import net.mqtts.system.service.ISysConfigService; +import net.mqtts.system.service.ISysPermissionService; +import net.mqtts.system.service.ISysPostService; +import net.mqtts.system.service.ISysRoleService; +import net.mqtts.system.service.ISysUserService; /** * 用户信息 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysUserOnlineController.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysUserOnlineController.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysUserOnlineController.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysUserOnlineController.java index 21bec1f4e024f62249a1bef5e3edc5efc0c58954..caa3c7349363a88bc1f385cd6f30bfe64ebc4201 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/controller/SysUserOnlineController.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/controller/SysUserOnlineController.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.controller; +package net.mqtts.system.controller; import java.util.ArrayList; import java.util.Collection; @@ -20,8 +20,8 @@ import com.ruoyi.common.log.enums.BusinessType; import com.ruoyi.common.redis.service.RedisService; import com.ruoyi.common.security.annotation.PreAuthorize; import com.ruoyi.system.api.model.LoginUser; -import com.ruoyi.system.domain.SysUserOnline; -import com.ruoyi.system.service.ISysUserOnlineService; +import net.mqtts.system.domain.SysUserOnline; +import net.mqtts.system.service.ISysUserOnlineService; /** * 在线用户监控 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysConfig.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysConfig.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysConfig.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysConfig.java index a1e22effb935274f61d041b137d39dc077d7c198..95d8d93a95ff16ff817c7fd52216bfd2242ddac4 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysConfig.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysConfig.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.domain; +package net.mqtts.system.domain; import javax.validation.constraints.NotBlank; import javax.validation.constraints.Size; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysMenu.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysMenu.java similarity index 99% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysMenu.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysMenu.java index a181e61e27814bb92d5b170f71174c64b6f1c4b6..8b64bb39bcc65b4abec9528c20616449f606a00a 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysMenu.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysMenu.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.domain; +package net.mqtts.system.domain; import java.util.ArrayList; import java.util.List; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysNotice.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysNotice.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysNotice.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysNotice.java index 7166f3cc9b87f930ef70ee990b0027bdf8745453..7c9c8d30a76455a770e7cdca9bac94d56e386568 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysNotice.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysNotice.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.domain; +package net.mqtts.system.domain; import javax.validation.constraints.NotBlank; import javax.validation.constraints.Size; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysPost.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysPost.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysPost.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysPost.java index 61a3b381bd1e72ad8f59a18b141fb74954750af0..5b56e433e4259df0a75f46c6543c8d7352ff7e75 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysPost.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysPost.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.domain; +package net.mqtts.system.domain; import javax.validation.constraints.NotBlank; import javax.validation.constraints.Size; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysRoleDept.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysRoleDept.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysRoleDept.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysRoleDept.java index 47b21bf79394579e946ff2eb1a7b1a4d6fbc8791..cc615f0cb8977168ce7cfd739e72a27b6d7e4cdc 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysRoleDept.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysRoleDept.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.domain; +package net.mqtts.system.domain; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysRoleMenu.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysRoleMenu.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysRoleMenu.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysRoleMenu.java index de10a74709401d3947e2a95e7844ae889b513f6d..b7075566aad2776691363c18fa895c56f6811920 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysRoleMenu.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysRoleMenu.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.domain; +package net.mqtts.system.domain; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysUserOnline.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysUserOnline.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysUserOnline.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysUserOnline.java index 69bac9a3ac5bdd2e1157deeb46cc176e618b60fa..4f60fd468b320dee0670765bf6b3c7df24a232ad 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysUserOnline.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysUserOnline.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.domain; +package net.mqtts.system.domain; /** * 当前在线会话 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysUserPost.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysUserPost.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysUserPost.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysUserPost.java index 6e8c416f21e3c345c88bf565885f604da11b8cb2..ef3a00f8174c50f7d99ea99e66af41ec86d29047 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysUserPost.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysUserPost.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.domain; +package net.mqtts.system.domain; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysUserRole.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysUserRole.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysUserRole.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysUserRole.java index 4d15810144a80005af96ce5a69862ee1c7ea26bf..6f97336a373934340c01e9b85dc4200296241c08 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/SysUserRole.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/SysUserRole.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.domain; +package net.mqtts.system.domain; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/vo/MetaVo.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/vo/MetaVo.java index 53bb9f6144d69a8a8a9775635778c9d5ad625fd6..c9e176eb7febc5f44a14242c60ddb63ad8f3e30e 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/vo/MetaVo.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.domain.vo; +package net.mqtts.system.domain.vo; import com.ruoyi.common.core.utils.StringUtils; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/vo/RouterVo.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/vo/RouterVo.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/vo/RouterVo.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/vo/RouterVo.java index afff8c9c5e42c6aed9cbf2246bd27400089b3591..d2183c70431604a8ee2ceed84382d22c810aa79b 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/vo/RouterVo.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/vo/RouterVo.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.domain.vo; +package net.mqtts.system.domain.vo; import com.fasterxml.jackson.annotation.JsonInclude; import java.util.List; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/vo/TreeSelect.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/vo/TreeSelect.java similarity index 95% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/vo/TreeSelect.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/vo/TreeSelect.java index cc542ef9aaa7a99da883264b971436b35292d6e3..b9da012b107ba1eeaff2d23933cda3d7a99913b7 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/domain/vo/TreeSelect.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/domain/vo/TreeSelect.java @@ -1,11 +1,11 @@ -package com.ruoyi.system.domain.vo; +package net.mqtts.system.domain.vo; import java.io.Serializable; import java.util.List; import java.util.stream.Collectors; import com.fasterxml.jackson.annotation.JsonInclude; import com.ruoyi.system.api.domain.SysDept; -import com.ruoyi.system.domain.SysMenu; +import net.mqtts.system.domain.SysMenu; /** * Treeselect树结构实体类 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysConfigMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysConfigMapper.java similarity index 94% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysConfigMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysConfigMapper.java index 63c46593568d9d9d4736588625e0fd5664eedb72..ceeb607c6ba18bb6f35e931c0fe1c67c1d296141 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysConfigMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysConfigMapper.java @@ -1,8 +1,8 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; -import com.ruoyi.system.domain.SysConfig; +import net.mqtts.system.domain.SysConfig; /** * 参数配置 数据层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysDeptMapper.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysDeptMapper.java index 7058b109e9884a31bf293bc24e6e799b710238c2..90452a9d6f35a2a7d5b3e962ff776cda925a1da0 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysDeptMapper.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysDictDataMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysDictDataMapper.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysDictDataMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysDictDataMapper.java index b004c59826ba21c25decd9cd514a118d5b00185c..4bfe4994f1af4ff1852f4c89106473529b8e56ca 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysDictDataMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysDictDataMapper.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; import org.apache.ibatis.annotations.Param; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysDictTypeMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysDictTypeMapper.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysDictTypeMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysDictTypeMapper.java index 3f9be58e3dc2bbc7beb618ec41d197061e92faad..0c52fe3d6285c2f8df1a7453cb586b16cf25a276 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysDictTypeMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysDictTypeMapper.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; import org.apache.ibatis.annotations.Mapper; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysLogininforMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysLogininforMapper.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysLogininforMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysLogininforMapper.java index 19671f3c1c3b99ade787200b2f9ec083de7aa9bb..c7353e3d73d9d5251539344a4ec2b3534891baed 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysLogininforMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysLogininforMapper.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; import com.ruoyi.system.api.domain.SysLogininfor; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysMenuMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysMenuMapper.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysMenuMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysMenuMapper.java index 0d6de9799efe79b191f35e900f8a0967be0721d5..8407ef2c68631feaa9db2bcaa39202a2acf9b391 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysMenuMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysMenuMapper.java @@ -1,11 +1,10 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; +import net.mqtts.system.domain.SysMenu; import org.apache.ibatis.annotations.Param; -import com.ruoyi.system.domain.SysMenu; - /** * 菜单表 数据层 * diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysNoticeMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysNoticeMapper.java similarity index 93% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysNoticeMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysNoticeMapper.java index c88a63ff088d035723d7edb3dc62d710ef57090c..144897a690a576e9b7cb16664ab02c1915ea951f 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysNoticeMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysNoticeMapper.java @@ -1,8 +1,8 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; -import com.ruoyi.system.domain.SysNotice; +import net.mqtts.system.domain.SysNotice; /** * 通知公告表 数据层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysOperLogMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysOperLogMapper.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysOperLogMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysOperLogMapper.java index 70a8649a611a1355b48139f7d05247e6b86b52b6..90e41e04e547963351158e3b675e6fd01f5e751d 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysOperLogMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysOperLogMapper.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysPostMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysPostMapper.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysPostMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysPostMapper.java index 643955289b118d439aeffed147007db5573c8f2a..cceea6e0e41479d503808fa869d4f86d5fd00085 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysPostMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysPostMapper.java @@ -1,8 +1,8 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; -import com.ruoyi.system.domain.SysPost; +import net.mqtts.system.domain.SysPost; /** * 岗位信息 数据层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysRoleDeptMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysRoleDeptMapper.java similarity index 91% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysRoleDeptMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysRoleDeptMapper.java index f9822db476fc255949b1c936b51c4504c8be8811..7bb38e8f45baa7bb5f90751696d0d49722368811 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysRoleDeptMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysRoleDeptMapper.java @@ -1,8 +1,8 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; -import com.ruoyi.system.domain.SysRoleDept; +import net.mqtts.system.domain.SysRoleDept; /** * 角色与部门关联表 数据层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysRoleMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysRoleMapper.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysRoleMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysRoleMapper.java index 0885b14bb8e3926a602c99d4dbd7ea2a672a9212..1dbac6a01afbff43456ce4e15e1b4781329e1bb1 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysRoleMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysRoleMapper.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysRoleMenuMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysRoleMenuMapper.java similarity index 91% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysRoleMenuMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysRoleMenuMapper.java index 6130cd2e1e923c3ea5f4fe377f4a7ea742064927..209fd7e6f3d66e6c759f94b6417123d1a60dab2e 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysRoleMenuMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysRoleMenuMapper.java @@ -1,8 +1,8 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; -import com.ruoyi.system.domain.SysRoleMenu; +import net.mqtts.system.domain.SysRoleMenu; /** * 角色与菜单关联表 数据层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysUserMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysUserMapper.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysUserMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysUserMapper.java index 72b1a4e2d0a6f3f7a9c33be21392258945a8020e..76614c0a88844bb56a30ecf97369837814ec766c 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysUserMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysUserMapper.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; import org.apache.ibatis.annotations.Param; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysUserPostMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysUserPostMapper.java similarity index 91% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysUserPostMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysUserPostMapper.java index d056dde73eab16946c0d2f4f13489efeadc7443a..b968fcec407a18e22f4752b03685e37049e2339a 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysUserPostMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysUserPostMapper.java @@ -1,8 +1,8 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; -import com.ruoyi.system.domain.SysUserPost; +import net.mqtts.system.domain.SysUserPost; /** * 用户与岗位关联表 数据层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysUserRoleMapper.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysUserRoleMapper.java similarity index 94% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysUserRoleMapper.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysUserRoleMapper.java index 3cf111c78b9a2fbbac267cb630960040cc121708..7d4e2bf7258d4811b53b91d74c8b7ca7ef2fe1c6 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/mapper/SysUserRoleMapper.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/mapper/SysUserRoleMapper.java @@ -1,10 +1,10 @@ -package com.ruoyi.system.mapper; +package net.mqtts.system.mapper; import java.util.List; import org.apache.ibatis.annotations.Param; -import com.ruoyi.system.domain.SysUserRole; +import net.mqtts.system.domain.SysUserRole; /** * 用户与角色关联表 数据层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysConfigService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysConfigService.java similarity index 95% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysConfigService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysConfigService.java index 83b2c5ec319b7e4ae0f220fe7314e6d8d72b832b..5ddb04de45321ba91e0f352939268dde2cd5fb32 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysConfigService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysConfigService.java @@ -1,8 +1,8 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.List; -import com.ruoyi.system.domain.SysConfig; +import net.mqtts.system.domain.SysConfig; /** * 参数配置 服务层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysDeptService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysDeptService.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysDeptService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysDeptService.java index c7b8c9e0962a256cc407466100facd80da361313..b9543b72be2d845b941b058a6841c9db92f7e27f 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysDeptService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysDeptService.java @@ -1,9 +1,9 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.List; import com.ruoyi.system.api.domain.SysDept; -import com.ruoyi.system.domain.vo.TreeSelect; +import net.mqtts.system.domain.vo.TreeSelect; /** * 部门管理 服务层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysDictDataService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysDictDataService.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysDictDataService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysDictDataService.java index 305a6ac515dd19a981816ad14d5322edb77cbcc6..8b6e7a7f405bd845da11579942d1467ba81be4a5 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysDictDataService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysDictDataService.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.List; import com.ruoyi.system.api.domain.SysDictData; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysDictTypeService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysDictTypeService.java similarity index 98% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysDictTypeService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysDictTypeService.java index 76b0619b328ad03852a0193b6c1b667926d25248..ee5bfbcd64d8c718abf62c4a3f07b2d25e168708 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysDictTypeService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysDictTypeService.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.List; import com.ruoyi.system.api.domain.SysDictData; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysLogininforService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysLogininforService.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysLogininforService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysLogininforService.java index cbba9885945126769f4738580652b2458ce7eeb8..794672e65bc7568540bbf7c6636cdadba3d31c5a 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysLogininforService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysLogininforService.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.List; import com.ruoyi.system.api.domain.SysLogininfor; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysMenuService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysMenuService.java similarity index 94% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysMenuService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysMenuService.java index 5597e21ba52c163e13a5abe499a2d12ddcf033ec..7c4cd827dcb9070e0d3a882493b4074d4c62ec0f 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysMenuService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysMenuService.java @@ -1,11 +1,11 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.List; import java.util.Set; -import com.ruoyi.system.domain.SysMenu; -import com.ruoyi.system.domain.vo.RouterVo; -import com.ruoyi.system.domain.vo.TreeSelect; +import net.mqtts.system.domain.SysMenu; +import net.mqtts.system.domain.vo.RouterVo; +import net.mqtts.system.domain.vo.TreeSelect; /** * 菜单 业务层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysNoticeService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysNoticeService.java similarity index 93% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysNoticeService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysNoticeService.java index 72fef4adcfe11173bafffe3061d60f641ca80ac4..24b185d2a081acb9ee55047109672039db9ff3c1 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysNoticeService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysNoticeService.java @@ -1,8 +1,8 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.List; -import com.ruoyi.system.domain.SysNotice; +import net.mqtts.system.domain.SysNotice; /** * 公告 服务层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysOperLogService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysOperLogService.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysOperLogService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysOperLogService.java index 2178a9dce3ba358bd8d9ce9b708bd96dd3e9cf0d..d815cae93938d658da0e5b31f4f93aa81d5a2598 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysOperLogService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysOperLogService.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.List; import com.ruoyi.system.api.domain.SysOperLog; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysPermissionService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysPermissionService.java similarity index 92% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysPermissionService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysPermissionService.java index 4934f0e5b584bc41b7b3f1717fe1a7365ca7160a..3ce19499e525494422b44cc418908f171d46fd8b 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysPermissionService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysPermissionService.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.Set; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysPostService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysPostService.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysPostService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysPostService.java index 3928ac87210f0df5ba696e3602ba0d81d197283e..fbb82e27dcc02f6485e5b220b09447a6d8d1aa77 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysPostService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysPostService.java @@ -1,8 +1,8 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.List; -import com.ruoyi.system.domain.SysPost; +import net.mqtts.system.domain.SysPost; /** * 岗位信息 服务层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysRoleService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysRoleService.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysRoleService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysRoleService.java index 8e2da61e678caeb280fb86b058ca07afab449777..49c89f666a4d898c7f7b8545724b0f6d65f7c677 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysRoleService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysRoleService.java @@ -1,9 +1,9 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.List; import java.util.Set; import com.ruoyi.system.api.domain.SysRole; -import com.ruoyi.system.domain.SysUserRole; +import net.mqtts.system.domain.SysUserRole; /** * 角色业务层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysUserOnlineService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysUserOnlineService.java similarity index 93% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysUserOnlineService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysUserOnlineService.java index 9ca0ac45bd6e78939469d1c5b941daa1fc5b2a02..bcbde46a20471c2343aa05e707363a5416fab059 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysUserOnlineService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysUserOnlineService.java @@ -1,7 +1,7 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import com.ruoyi.system.api.model.LoginUser; -import com.ruoyi.system.domain.SysUserOnline; +import net.mqtts.system.domain.SysUserOnline; /** * 在线用户 服务层 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysUserService.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysUserService.java similarity index 99% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysUserService.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysUserService.java index 5534511ab5b519a20e8361c8696fe38361350352..24c3953d779e66eb209f0394f221395665d0b859 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/ISysUserService.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/ISysUserService.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service; +package net.mqtts.system.service; import java.util.List; import com.ruoyi.system.api.domain.SysUser; diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysConfigServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysConfigServiceImpl.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysConfigServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysConfigServiceImpl.java index 1a827769e6464b19f103980a79d41dd2b13de501..ef69043be51811915a65ef4b2ec7e1b0df360215 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysConfigServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysConfigServiceImpl.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.Collection; import java.util.List; @@ -11,9 +11,9 @@ import com.ruoyi.common.core.exception.ServiceException; import com.ruoyi.common.core.text.Convert; import com.ruoyi.common.core.utils.StringUtils; import com.ruoyi.common.redis.service.RedisService; -import com.ruoyi.system.domain.SysConfig; -import com.ruoyi.system.mapper.SysConfigMapper; -import com.ruoyi.system.service.ISysConfigService; +import net.mqtts.system.domain.SysConfig; +import net.mqtts.system.mapper.SysConfigMapper; +import net.mqtts.system.service.ISysConfigService; /** * 参数配置 服务层实现 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysDeptServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysDeptServiceImpl.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysDeptServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysDeptServiceImpl.java index 9a8d680752cad87b35a93565292d15923836b13e..aa5c3258d2907137bcc4f4172de81ef98001a8b0 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysDeptServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysDeptServiceImpl.java @@ -1,9 +1,12 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.stream.Collectors; + +import net.mqtts.system.mapper.SysRoleMapper; +import net.mqtts.system.service.ISysDeptService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.common.core.constant.UserConstants; @@ -16,10 +19,8 @@ import com.ruoyi.common.datascope.annotation.DataScope; import com.ruoyi.system.api.domain.SysDept; import com.ruoyi.system.api.domain.SysRole; import com.ruoyi.system.api.domain.SysUser; -import com.ruoyi.system.domain.vo.TreeSelect; -import com.ruoyi.system.mapper.SysDeptMapper; -import com.ruoyi.system.mapper.SysRoleMapper; -import com.ruoyi.system.service.ISysDeptService; +import net.mqtts.system.domain.vo.TreeSelect; +import net.mqtts.system.mapper.SysDeptMapper; /** * 部门管理 服务实现 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysDictDataServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysDictDataServiceImpl.java similarity index 95% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysDictDataServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysDictDataServiceImpl.java index d609de1a4f6b6bc504075a8c6dffdd3d8e8c69a4..086943f68461af79e157fc03c5e2c90d9233766c 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysDictDataServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysDictDataServiceImpl.java @@ -1,12 +1,12 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.common.security.utils.DictUtils; import com.ruoyi.system.api.domain.SysDictData; -import com.ruoyi.system.mapper.SysDictDataMapper; -import com.ruoyi.system.service.ISysDictDataService; +import net.mqtts.system.mapper.SysDictDataMapper; +import net.mqtts.system.service.ISysDictDataService; /** * 字典 业务层处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysDictTypeServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysDictTypeServiceImpl.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysDictTypeServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysDictTypeServiceImpl.java index 8c2109656c3d2e509a5558e0d4b82b8569e9f326..c6bdaf68aad7942558ab70de14d11e663939b2dc 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysDictTypeServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysDictTypeServiceImpl.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.List; import javax.annotation.PostConstruct; @@ -11,9 +11,9 @@ import com.ruoyi.common.core.utils.StringUtils; import com.ruoyi.common.security.utils.DictUtils; import com.ruoyi.system.api.domain.SysDictData; import com.ruoyi.system.api.domain.SysDictType; -import com.ruoyi.system.mapper.SysDictDataMapper; -import com.ruoyi.system.mapper.SysDictTypeMapper; -import com.ruoyi.system.service.ISysDictTypeService; +import net.mqtts.system.mapper.SysDictDataMapper; +import net.mqtts.system.mapper.SysDictTypeMapper; +import net.mqtts.system.service.ISysDictTypeService; /** * 字典 业务层处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysLogininforServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysLogininforServiceImpl.java similarity index 90% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysLogininforServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysLogininforServiceImpl.java index 95021d00160555cc489750e9d187c7e300b4b744..009eeb2c795dcca53ee5b0627b42a6116e4ae4f4 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysLogininforServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysLogininforServiceImpl.java @@ -1,11 +1,11 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.system.api.domain.SysLogininfor; -import com.ruoyi.system.mapper.SysLogininforMapper; -import com.ruoyi.system.service.ISysLogininforService; +import net.mqtts.system.mapper.SysLogininforMapper; +import net.mqtts.system.service.ISysLogininforService; /** * 系统访问日志情况信息 服务层处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysMenuServiceImpl.java similarity index 97% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysMenuServiceImpl.java index 1a6257efc9b7e7102802efd56ec6f8fae490cf9d..03c5d0fc4d1942e333313d3f6d83edb889ceca4c 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysMenuServiceImpl.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.ArrayList; import java.util.Arrays; @@ -8,6 +8,10 @@ import java.util.LinkedList; import java.util.List; import java.util.Set; import java.util.stream.Collectors; + +import net.mqtts.system.mapper.SysRoleMapper; +import net.mqtts.system.mapper.SysRoleMenuMapper; +import net.mqtts.system.service.ISysMenuService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.common.core.constant.Constants; @@ -16,14 +20,11 @@ import com.ruoyi.common.core.utils.SecurityUtils; import com.ruoyi.common.core.utils.StringUtils; import com.ruoyi.system.api.domain.SysRole; import com.ruoyi.system.api.domain.SysUser; -import com.ruoyi.system.domain.SysMenu; -import com.ruoyi.system.domain.vo.MetaVo; -import com.ruoyi.system.domain.vo.RouterVo; -import com.ruoyi.system.domain.vo.TreeSelect; -import com.ruoyi.system.mapper.SysMenuMapper; -import com.ruoyi.system.mapper.SysRoleMapper; -import com.ruoyi.system.mapper.SysRoleMenuMapper; -import com.ruoyi.system.service.ISysMenuService; +import net.mqtts.system.domain.SysMenu; +import net.mqtts.system.domain.vo.MetaVo; +import net.mqtts.system.domain.vo.RouterVo; +import net.mqtts.system.domain.vo.TreeSelect; +import net.mqtts.system.mapper.SysMenuMapper; /** * 菜单 业务层处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysNoticeServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysNoticeServiceImpl.java similarity index 90% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysNoticeServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysNoticeServiceImpl.java index ddd26cf4b576366c086f2baec9db66da0c82da6f..85bd23ace76861fb77b363da86e614a28a2999a6 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysNoticeServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysNoticeServiceImpl.java @@ -1,13 +1,13 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; -import com.ruoyi.system.domain.SysNotice; -import com.ruoyi.system.mapper.SysNoticeMapper; -import com.ruoyi.system.service.ISysNoticeService; +import net.mqtts.system.domain.SysNotice; +import net.mqtts.system.mapper.SysNoticeMapper; +import net.mqtts.system.service.ISysNoticeService; /** * 公告 服务层实现 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysOperLogServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysOperLogServiceImpl.java similarity index 91% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysOperLogServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysOperLogServiceImpl.java index 232810f3e35befc927ef8ff0c16963e17919fe4f..7c752e12f838575b9ffbde9bc26ecf3336f2c505 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysOperLogServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysOperLogServiceImpl.java @@ -1,11 +1,11 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.system.api.domain.SysOperLog; -import com.ruoyi.system.mapper.SysOperLogMapper; -import com.ruoyi.system.service.ISysOperLogService; +import net.mqtts.system.mapper.SysOperLogMapper; +import net.mqtts.system.service.ISysOperLogService; /** * 操作日志 服务层处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysPermissionServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysPermissionServiceImpl.java similarity index 88% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysPermissionServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysPermissionServiceImpl.java index 21347ffe63f8564728981330af34118f05e4f494..fc0ee225ecd0789a9f2b72459ea784a7b253c248 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysPermissionServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysPermissionServiceImpl.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.HashSet; import java.util.Set; @@ -6,9 +6,9 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.system.api.domain.SysUser; -import com.ruoyi.system.service.ISysMenuService; -import com.ruoyi.system.service.ISysPermissionService; -import com.ruoyi.system.service.ISysRoleService; +import net.mqtts.system.service.ISysMenuService; +import net.mqtts.system.service.ISysPermissionService; +import net.mqtts.system.service.ISysRoleService; @Service public class SysPermissionServiceImpl implements ISysPermissionService diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysPostServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysPostServiceImpl.java similarity index 94% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysPostServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysPostServiceImpl.java index 9d02c6c70d0d960c8bf0121116ca1b6a99841e5c..a370ae8feecb652fbe4aa46f62390ea781daf9d1 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysPostServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysPostServiceImpl.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.List; @@ -8,10 +8,10 @@ import org.springframework.stereotype.Service; import com.ruoyi.common.core.constant.UserConstants; import com.ruoyi.common.core.exception.ServiceException; import com.ruoyi.common.core.utils.StringUtils; -import com.ruoyi.system.domain.SysPost; -import com.ruoyi.system.mapper.SysPostMapper; -import com.ruoyi.system.mapper.SysUserPostMapper; -import com.ruoyi.system.service.ISysPostService; +import net.mqtts.system.domain.SysPost; +import net.mqtts.system.mapper.SysPostMapper; +import net.mqtts.system.mapper.SysUserPostMapper; +import net.mqtts.system.service.ISysPostService; /** * 岗位信息 服务层处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysRoleServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysRoleServiceImpl.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysRoleServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysRoleServiceImpl.java index 3e8d7dc89c162922f5e4cbacb530b26030578084..4c24a1ab80184bd7402cec113176ad2554c4b6f9 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysRoleServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysRoleServiceImpl.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.ArrayList; import java.util.Arrays; @@ -16,14 +16,14 @@ import com.ruoyi.common.core.utils.StringUtils; import com.ruoyi.common.datascope.annotation.DataScope; import com.ruoyi.system.api.domain.SysRole; import com.ruoyi.system.api.domain.SysUser; -import com.ruoyi.system.domain.SysRoleDept; -import com.ruoyi.system.domain.SysRoleMenu; -import com.ruoyi.system.domain.SysUserRole; -import com.ruoyi.system.mapper.SysRoleDeptMapper; -import com.ruoyi.system.mapper.SysRoleMapper; -import com.ruoyi.system.mapper.SysRoleMenuMapper; -import com.ruoyi.system.mapper.SysUserRoleMapper; -import com.ruoyi.system.service.ISysRoleService; +import net.mqtts.system.domain.SysRoleDept; +import net.mqtts.system.domain.SysRoleMenu; +import net.mqtts.system.domain.SysUserRole; +import net.mqtts.system.mapper.SysRoleDeptMapper; +import net.mqtts.system.mapper.SysRoleMapper; +import net.mqtts.system.mapper.SysRoleMenuMapper; +import net.mqtts.system.mapper.SysUserRoleMapper; +import net.mqtts.system.service.ISysRoleService; /** * 角色 业务层处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysUserOnlineServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysUserOnlineServiceImpl.java similarity index 94% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysUserOnlineServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysUserOnlineServiceImpl.java index 046b6fd2481a91f3060ae92c2db8c7cda17d69f9..20653459d0e15ad54af638dcc34abddf0d74f9cb 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysUserOnlineServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysUserOnlineServiceImpl.java @@ -1,10 +1,10 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import org.springframework.stereotype.Service; import com.ruoyi.common.core.utils.StringUtils; import com.ruoyi.system.api.model.LoginUser; -import com.ruoyi.system.domain.SysUserOnline; -import com.ruoyi.system.service.ISysUserOnlineService; +import net.mqtts.system.domain.SysUserOnline; +import net.mqtts.system.service.ISysUserOnlineService; /** * 在线用户 服务层处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysUserServiceImpl.java b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysUserServiceImpl.java similarity index 96% rename from mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysUserServiceImpl.java rename to mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysUserServiceImpl.java index 76e0181aa169d809a625343097148daf72b1f162..05db1b62989ef939c76fdecb2693411eda22c17c 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/java/com/ruoyi/system/service/impl/SysUserServiceImpl.java +++ b/mqtts-modules/mqtts-modules-system/src/main/java/net/mqtts/system/service/impl/SysUserServiceImpl.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.service.impl; +package net.mqtts.system.service.impl; import java.util.ArrayList; import java.util.List; @@ -15,16 +15,16 @@ import com.ruoyi.common.core.utils.StringUtils; import com.ruoyi.common.datascope.annotation.DataScope; import com.ruoyi.system.api.domain.SysRole; import com.ruoyi.system.api.domain.SysUser; -import com.ruoyi.system.domain.SysPost; -import com.ruoyi.system.domain.SysUserPost; -import com.ruoyi.system.domain.SysUserRole; -import com.ruoyi.system.mapper.SysPostMapper; -import com.ruoyi.system.mapper.SysRoleMapper; -import com.ruoyi.system.mapper.SysUserMapper; -import com.ruoyi.system.mapper.SysUserPostMapper; -import com.ruoyi.system.mapper.SysUserRoleMapper; -import com.ruoyi.system.service.ISysConfigService; -import com.ruoyi.system.service.ISysUserService; +import net.mqtts.system.domain.SysPost; +import net.mqtts.system.domain.SysUserPost; +import net.mqtts.system.domain.SysUserRole; +import net.mqtts.system.mapper.SysPostMapper; +import net.mqtts.system.mapper.SysRoleMapper; +import net.mqtts.system.mapper.SysUserMapper; +import net.mqtts.system.mapper.SysUserPostMapper; +import net.mqtts.system.mapper.SysUserRoleMapper; +import net.mqtts.system.service.ISysConfigService; +import net.mqtts.system.service.ISysUserService; /** * 用户 业务层处理 diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysConfigMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysConfigMapper.xml index 8b979061bb890190ef5eb61a1e6f9416e41c96d7..f81631d59d8364e42f58afa1b7d367f3092de1b2 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysConfigMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysConfigMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDeptMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDeptMapper.xml index 17dd59b342b80bf31057ba269eaa7deb6da9cb23..2a13d7e93f4e82e45325f6a054667575a54c8da9 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDeptMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDeptMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDictDataMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDictDataMapper.xml index 8da9030bf1762f19305fc099465881bf75cec64c..9f192b4862cdae06e657c95f89e87e0399bc8079 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDictDataMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDictDataMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDictTypeMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDictTypeMapper.xml index 55b4075f146ec27985000b56bb46a8417e905b1c..f11f71d469cadb6263c4295a8b95b8265c8d351e 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDictTypeMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysDictTypeMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysLogininforMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysLogininforMapper.xml index da1db32d074b283ec58687312e4f9df79ae45107..555876ebe99764a3b66c22fb852a0b110277b021 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysLogininforMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysLogininforMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysMenuMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysMenuMapper.xml index 3e4cd8b6d58160c4a16e3b6ef2e56b34ec4d2784..583a6c1f03d6f29837770788e1c13f2bd9b4d380 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysMenuMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysMenuMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysNoticeMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysNoticeMapper.xml index 65d30794dc20f68cb2d9c9dc81c4c258b20840ed..fa971710b9b6eb94b624cf409821348bfa2b9b39 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysNoticeMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysNoticeMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysOperLogMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysOperLogMapper.xml index 3d13deeed5a283e3b9660695e99a254c0b8c49b4..9477282bebd52ae4ad1f9189cbe11eef6f2c608b 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysOperLogMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysOperLogMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysPostMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysPostMapper.xml index c82d808f5a2a313a69616bee18537be918e5e011..ccf182aa57aa62e90d1049b634380d7d5fcf1f0b 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysPostMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysPostMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleDeptMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleDeptMapper.xml index 7c4139bce277c8792d6fbd92bb9b4c67504cd4dd..0f4c829676e153b7489c46814e547b04b61e28fd 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleDeptMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleDeptMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleMapper.xml index 7ef6c1b94b7fa227118c5eee88fa24f9cfa1ea31..9400c31bcb7d0638867ecd5a338e9dd9912eabd0 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleMenuMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleMenuMapper.xml index cb60a852941ef1a28bee93383bc65ee678d2bde4..d89ae071e1235412182093fc9a221f3cfdf0f93c 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleMenuMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysRoleMenuMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserMapper.xml index a86f1d3e934b2f5b045b3901e68beff959316c6e..90da1b1f1be1857d3cfde866e8ea54c4e88ebdeb 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserPostMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserPostMapper.xml index 2b90bc40b67418a0e2493683f7af2f27f3ddabbe..80737341f3c620a47a7c0afd6d63c3f2002b70b1 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserPostMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserPostMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserRoleMapper.xml b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserRoleMapper.xml index dd726891a8ed42c98892b2e99479bf3aabb68630..34edd64cc8bf6c401abd6a1df7bb682993565ba4 100644 --- a/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserRoleMapper.xml +++ b/mqtts-modules/mqtts-modules-system/src/main/resources/mapper/system/SysUserRoleMapper.xml @@ -2,7 +2,7 @@ - + diff --git a/mqtts-visual/pom.xml b/mqtts-visual/pom.xml index aaf72fab4ee18ce46914d8453c2c1b5f83172ce9..480dd44dbbfb6fd180274545cf1483ceef396e56 100644 --- a/mqtts-visual/pom.xml +++ b/mqtts-visual/pom.xml @@ -9,7 +9,7 @@ 4.0.0 - mqtts-visual + mqtts-visual-monitor mqtts-visual