refactor: 将 RuoYi 标记替换为 HZHub
This commit is contained in:
@@ -3,16 +3,16 @@
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<groupId>org.ruoyi</groupId>
|
||||
<artifactId>ruoyi-common</artifactId>
|
||||
<groupId>org.hzhub</groupId>
|
||||
<artifactId>hzhub-common</artifactId>
|
||||
<version>${revision}</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>ruoyi-common-sms</artifactId>
|
||||
<artifactId>hzhub-common-sms</artifactId>
|
||||
|
||||
<description>
|
||||
ruoyi-common-sms 短信模块
|
||||
hzhub-common-sms 短信模块
|
||||
</description>
|
||||
|
||||
<dependencies>
|
||||
@@ -22,10 +22,10 @@
|
||||
<artifactId>sms4j-spring-boot-starter</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- RuoYi Common Redis-->
|
||||
<!-- HZHub Common Redis-->
|
||||
<dependency>
|
||||
<groupId>org.ruoyi</groupId>
|
||||
<artifactId>ruoyi-common-redis</artifactId>
|
||||
<groupId>org.hzhub</groupId>
|
||||
<artifactId>hzhub-common-redis</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package org.ruoyi.common.sms.config;
|
||||
package org.hzhub.common.sms.config;
|
||||
|
||||
import org.ruoyi.common.sms.core.dao.PlusSmsDao;
|
||||
import org.ruoyi.common.sms.handler.SmsExceptionHandler;
|
||||
import org.hzhub.common.sms.core.dao.PlusSmsDao;
|
||||
import org.hzhub.common.sms.handler.SmsExceptionHandler;
|
||||
import org.dromara.sms4j.api.dao.SmsDao;
|
||||
import org.springframework.boot.autoconfigure.AutoConfiguration;
|
||||
import org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package org.ruoyi.common.sms.core.dao;
|
||||
package org.hzhub.common.sms.core.dao;
|
||||
|
||||
import org.ruoyi.common.core.constant.GlobalConstants;
|
||||
import org.ruoyi.common.redis.utils.RedisUtils;
|
||||
import org.hzhub.common.core.constant.GlobalConstants;
|
||||
import org.hzhub.common.redis.utils.RedisUtils;
|
||||
import org.dromara.sms4j.api.dao.SmsDao;
|
||||
|
||||
import java.time.Duration;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package org.ruoyi.common.sms.handler;
|
||||
package org.hzhub.common.sms.handler;
|
||||
|
||||
import cn.hutool.http.HttpStatus;
|
||||
import jakarta.servlet.http.HttpServletRequest;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.ruoyi.common.core.domain.R;
|
||||
import org.hzhub.common.core.domain.R;
|
||||
import org.dromara.sms4j.comm.exception.SmsBlendException;
|
||||
import org.springframework.web.bind.annotation.ExceptionHandler;
|
||||
import org.springframework.web.bind.annotation.RestControllerAdvice;
|
||||
|
||||
Reference in New Issue
Block a user