From 5cfa96e127f16dd2e31e3b08042f366950e5d63f Mon Sep 17 00:00:00 2001 From: Zheng Jie <201507802@qq.com> Date: Tue, 2 Aug 2022 13:48:48 +0800 Subject: [PATCH] update domain --- README.md | 8 ++++---- .../main/java/me/zhengjie/annotation/DataPermission.java | 2 +- .../src/main/java/me/zhengjie/config/RsaProperties.java | 2 +- .../src/main/java/me/zhengjie/config/SwaggerConfig.java | 2 +- .../src/main/java/me/zhengjie/utils/CloseUtil.java | 2 +- .../java/me/zhengjie/utils/enums/RequestMethodEnum.java | 2 +- .../modules/system/service/impl/DataServiceImpl.java | 2 +- .../modules/system/service/impl/VerifyServiceImpl.java | 4 ++-- .../src/main/resources/template/email/email.ftl | 2 +- .../src/main/resources/template/email/taskAlarm.ftl | 2 +- .../resources/template/generator/admin/Controller.ftl | 2 +- .../src/main/resources/template/generator/admin/Dto.ftl | 2 +- .../main/resources/template/generator/admin/Entity.ftl | 2 +- .../main/resources/template/generator/admin/Mapper.ftl | 2 +- .../resources/template/generator/admin/QueryCriteria.ftl | 2 +- .../resources/template/generator/admin/Repository.ftl | 2 +- .../main/resources/template/generator/admin/Service.ftl | 2 +- .../resources/template/generator/admin/ServiceImpl.ftl | 2 +- pom.xml | 4 ++-- 19 files changed, 24 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 7462baca..0b7c3f34 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

EL-ADMIN 后台管理系统

+

ELADMIN 后台管理系统

[![AUR](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg)](https://github.com/elunez/eladmin/blob/master/LICENSE) @@ -11,9 +11,9 @@ #### 项目简介 一个基于 Spring Boot 2.1.0 、 Spring Boot Jpa、 JWT、Spring Security、Redis、Vue的前后端分离的后台管理系统 -**开发文档:** [https://el-admin.vip](https://el-admin.vip) +**开发文档:** [https://eladmin.vip](https://eladmin.vip) -**体验地址:** [https://el-admin.vip/demo](https://el-admin.vip/demo) +**体验地址:** [https://eladmin.vip/demo](https://eladmin.vip/demo) **账号密码:** `admin / 123456` @@ -102,7 +102,7 @@ - 感谢 [d15801543974](https://github.com/d15801543974) 大佬提供的基于注解的通用查询方式 #### 项目捐赠 -项目的发展离不开你的支持,请作者喝杯咖啡吧☕ [Donate](https://el-admin.vip/donation/) +项目的发展离不开你的支持,请作者喝杯咖啡吧☕ [Donate](https://eladmin.vip/donation/) #### 反馈交流 - QQ交流群:一群:891137268 、二群:947578238、三群:659622532 \ No newline at end of file diff --git a/eladmin-common/src/main/java/me/zhengjie/annotation/DataPermission.java b/eladmin-common/src/main/java/me/zhengjie/annotation/DataPermission.java index b73c1a24..044d551e 100644 --- a/eladmin-common/src/main/java/me/zhengjie/annotation/DataPermission.java +++ b/eladmin-common/src/main/java/me/zhengjie/annotation/DataPermission.java @@ -28,7 +28,7 @@ import java.lang.annotation.Target; * 应该是 @DataPermission(joinName = "dept", fieldName = "id") *

* @author Zheng Jie - * @website https://el-admin.vip + * @website https://eladmin.vip * @date 2020-05-07 **/ @Target(ElementType.TYPE) diff --git a/eladmin-common/src/main/java/me/zhengjie/config/RsaProperties.java b/eladmin-common/src/main/java/me/zhengjie/config/RsaProperties.java index a3594cdb..0a4a5375 100644 --- a/eladmin-common/src/main/java/me/zhengjie/config/RsaProperties.java +++ b/eladmin-common/src/main/java/me/zhengjie/config/RsaProperties.java @@ -21,7 +21,7 @@ import org.springframework.stereotype.Component; /** * @author Zheng Jie - * @website https://el-admin.vip + * @website https://eladmin.vip * @description * @date 2020-05-18 **/ diff --git a/eladmin-common/src/main/java/me/zhengjie/config/SwaggerConfig.java b/eladmin-common/src/main/java/me/zhengjie/config/SwaggerConfig.java index 6d267746..989be98d 100644 --- a/eladmin-common/src/main/java/me/zhengjie/config/SwaggerConfig.java +++ b/eladmin-common/src/main/java/me/zhengjie/config/SwaggerConfig.java @@ -77,7 +77,7 @@ public class SwaggerConfig { private ApiInfo apiInfo() { return new ApiInfoBuilder() .description("一个简单且易上手的 Spring boot 后台管理框架") - .title("EL-ADMIN 接口文档") + .title("ELADMIN 接口文档") .version("2.6") .build(); } diff --git a/eladmin-common/src/main/java/me/zhengjie/utils/CloseUtil.java b/eladmin-common/src/main/java/me/zhengjie/utils/CloseUtil.java index 98d375be..f39919f2 100644 --- a/eladmin-common/src/main/java/me/zhengjie/utils/CloseUtil.java +++ b/eladmin-common/src/main/java/me/zhengjie/utils/CloseUtil.java @@ -19,7 +19,7 @@ import java.io.Closeable; /** * @author Zheng Jie - * @website https://el-admin.vip + * @website https://eladmin.vip * @description 用于关闭各种连接,缺啥补啥 * @date 2021-03-05 **/ diff --git a/eladmin-common/src/main/java/me/zhengjie/utils/enums/RequestMethodEnum.java b/eladmin-common/src/main/java/me/zhengjie/utils/enums/RequestMethodEnum.java index 35e42b80..7de5146c 100644 --- a/eladmin-common/src/main/java/me/zhengjie/utils/enums/RequestMethodEnum.java +++ b/eladmin-common/src/main/java/me/zhengjie/utils/enums/RequestMethodEnum.java @@ -20,7 +20,7 @@ import lombok.Getter; /** * @author Zheng Jie - * @website https://el-admin.vip + * @website https://eladmin.vip * @description * @date 2020-06-10 **/ diff --git a/eladmin-system/src/main/java/me/zhengjie/modules/system/service/impl/DataServiceImpl.java b/eladmin-system/src/main/java/me/zhengjie/modules/system/service/impl/DataServiceImpl.java index 2933db9c..cd9cfd43 100644 --- a/eladmin-system/src/main/java/me/zhengjie/modules/system/service/impl/DataServiceImpl.java +++ b/eladmin-system/src/main/java/me/zhengjie/modules/system/service/impl/DataServiceImpl.java @@ -30,7 +30,7 @@ import java.util.*; /** * @author Zheng Jie - * @website https://el-admin.vip + * @website https://eladmin.vip * @description 数据权限服务实现 * @date 2020-05-07 **/ diff --git a/eladmin-system/src/main/java/me/zhengjie/modules/system/service/impl/VerifyServiceImpl.java b/eladmin-system/src/main/java/me/zhengjie/modules/system/service/impl/VerifyServiceImpl.java index ec3230c7..79d307f9 100644 --- a/eladmin-system/src/main/java/me/zhengjie/modules/system/service/impl/VerifyServiceImpl.java +++ b/eladmin-system/src/main/java/me/zhengjie/modules/system/service/impl/VerifyServiceImpl.java @@ -60,11 +60,11 @@ public class VerifyServiceImpl implements VerifyService { throw new BadRequestException("服务异常,请联系网站负责人"); } content = template.render(Dict.create().set("code",code)); - emailVo = new EmailVo(Collections.singletonList(email),"EL-ADMIN后台管理系统",content); + emailVo = new EmailVo(Collections.singletonList(email),"ELADMIN后台管理系统",content); // 存在就再次发送原来的验证码 } else { content = template.render(Dict.create().set("code",oldCode)); - emailVo = new EmailVo(Collections.singletonList(email),"EL-ADMIN后台管理系统",content); + emailVo = new EmailVo(Collections.singletonList(email),"ELADMIN后台管理系统",content); } return emailVo; } diff --git a/eladmin-system/src/main/resources/template/email/email.ftl b/eladmin-system/src/main/resources/template/email/email.ftl index 2f82fcb5..606d490e 100644 --- a/eladmin-system/src/main/resources/template/email/email.ftl +++ b/eladmin-system/src/main/resources/template/email/email.ftl @@ -39,7 +39,7 @@ font-size: 12px; padding: 20px 0px; font-family: Microsoft YaHei;"> - Copyright ©${.now?string("yyyy")} EL-ADMIN 后台管理系统 All Rights Reserved. + Copyright ©${.now?string("yyyy")} ELADMIN 后台管理系统 All Rights Reserved.
diff --git a/eladmin-system/src/main/resources/template/email/taskAlarm.ftl b/eladmin-system/src/main/resources/template/email/taskAlarm.ftl index b116decb..a29b0780 100644 --- a/eladmin-system/src/main/resources/template/email/taskAlarm.ftl +++ b/eladmin-system/src/main/resources/template/email/taskAlarm.ftl @@ -60,7 +60,7 @@ font-size: 12px; padding: 20px 0px; font-family: Microsoft YaHei;"> - Copyright ©${.now?string("yyyy")} EL-ADMIN 后台管理系统 All Rights Reserved. + Copyright ©${.now?string("yyyy")} ELADMIN 后台管理系统 All Rights Reserved. diff --git a/eladmin-system/src/main/resources/template/generator/admin/Controller.ftl b/eladmin-system/src/main/resources/template/generator/admin/Controller.ftl index f81e280f..5af73ddb 100644 --- a/eladmin-system/src/main/resources/template/generator/admin/Controller.ftl +++ b/eladmin-system/src/main/resources/template/generator/admin/Controller.ftl @@ -31,7 +31,7 @@ import java.io.IOException; import javax.servlet.http.HttpServletResponse; /** -* @website https://el-admin.vip +* @website https://eladmin.vip * @author ${author} * @date ${date} **/ diff --git a/eladmin-system/src/main/resources/template/generator/admin/Dto.ftl b/eladmin-system/src/main/resources/template/generator/admin/Dto.ftl index e388a0b4..ac81d988 100644 --- a/eladmin-system/src/main/resources/template/generator/admin/Dto.ftl +++ b/eladmin-system/src/main/resources/template/generator/admin/Dto.ftl @@ -29,7 +29,7 @@ import com.alibaba.fastjson.serializer.ToStringSerializer; /** -* @website https://el-admin.vip +* @website https://eladmin.vip * @description / * @author ${author} * @date ${date} diff --git a/eladmin-system/src/main/resources/template/generator/admin/Entity.ftl b/eladmin-system/src/main/resources/template/generator/admin/Entity.ftl index c5cf9c26..2e85cea8 100644 --- a/eladmin-system/src/main/resources/template/generator/admin/Entity.ftl +++ b/eladmin-system/src/main/resources/template/generator/admin/Entity.ftl @@ -37,7 +37,7 @@ import java.math.BigDecimal; import java.io.Serializable; /** -* @website https://el-admin.vip +* @website https://eladmin.vip * @description / * @author ${author} * @date ${date} diff --git a/eladmin-system/src/main/resources/template/generator/admin/Mapper.ftl b/eladmin-system/src/main/resources/template/generator/admin/Mapper.ftl index 3387f060..7bd67c0a 100644 --- a/eladmin-system/src/main/resources/template/generator/admin/Mapper.ftl +++ b/eladmin-system/src/main/resources/template/generator/admin/Mapper.ftl @@ -22,7 +22,7 @@ import org.mapstruct.Mapper; import org.mapstruct.ReportingPolicy; /** -* @website https://el-admin.vip +* @website https://eladmin.vip * @author ${author} * @date ${date} **/ diff --git a/eladmin-system/src/main/resources/template/generator/admin/QueryCriteria.ftl b/eladmin-system/src/main/resources/template/generator/admin/QueryCriteria.ftl index 2a4d1ff4..b94f0f45 100644 --- a/eladmin-system/src/main/resources/template/generator/admin/QueryCriteria.ftl +++ b/eladmin-system/src/main/resources/template/generator/admin/QueryCriteria.ftl @@ -30,7 +30,7 @@ import me.zhengjie.annotation.Query; /** -* @website https://el-admin.vip +* @website https://eladmin.vip * @author ${author} * @date ${date} **/ diff --git a/eladmin-system/src/main/resources/template/generator/admin/Repository.ftl b/eladmin-system/src/main/resources/template/generator/admin/Repository.ftl index 2420d4b0..dac1e924 100644 --- a/eladmin-system/src/main/resources/template/generator/admin/Repository.ftl +++ b/eladmin-system/src/main/resources/template/generator/admin/Repository.ftl @@ -20,7 +20,7 @@ import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; /** -* @website https://el-admin.vip +* @website https://eladmin.vip * @author ${author} * @date ${date} **/ diff --git a/eladmin-system/src/main/resources/template/generator/admin/Service.ftl b/eladmin-system/src/main/resources/template/generator/admin/Service.ftl index 9ecbe249..ef337149 100644 --- a/eladmin-system/src/main/resources/template/generator/admin/Service.ftl +++ b/eladmin-system/src/main/resources/template/generator/admin/Service.ftl @@ -25,7 +25,7 @@ import java.io.IOException; import javax.servlet.http.HttpServletResponse; /** -* @website https://el-admin.vip +* @website https://eladmin.vip * @description 服务接口 * @author ${author} * @date ${date} diff --git a/eladmin-system/src/main/resources/template/generator/admin/ServiceImpl.ftl b/eladmin-system/src/main/resources/template/generator/admin/ServiceImpl.ftl index 17f04547..4f1f07da 100644 --- a/eladmin-system/src/main/resources/template/generator/admin/ServiceImpl.ftl +++ b/eladmin-system/src/main/resources/template/generator/admin/ServiceImpl.ftl @@ -54,7 +54,7 @@ import java.util.ArrayList; import java.util.LinkedHashMap; /** -* @website https://el-admin.vip +* @website https://eladmin.vip * @description 服务实现 * @author ${author} * @date ${date} diff --git a/pom.xml b/pom.xml index 14bf38dc..7dc9a3c6 100644 --- a/pom.xml +++ b/pom.xml @@ -17,8 +17,8 @@ eladmin-generator - EL-ADMIN 后台管理 - https://el-admin.vip + ELADMIN 后台管理 + https://eladmin.vip org.springframework.boot