2
0

style: 替换项目内所有ruoyi转为wfc

This commit is contained in:
TsMask
2024-11-26 17:34:02 +08:00
parent 77a28b06a3
commit fab448f836
300 changed files with 1211 additions and 1428 deletions

5
.gitignore vendored
View File

@@ -80,8 +80,3 @@ package-lock.json
yarn.lock
.VSCodeCounter
ruoyi-ui-old
ruoyi-ui/src/typings/auto-imports.d.ts
ruoyi-ui/src/typings/components.d.ts

View File

@@ -1 +1 @@
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǰ<EFBFBD><EFBFBD>ruoyi-ui<75><69><EFBFBD><EFBFBD><EFBFBD>õľ<C3B5>̬<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>nginx<6E><78><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʡ<EFBFBD>
<EFBFBD><EFBFBD><EFBFBD>ǰ<EFBFBD><EFBFBD>wfc-ui<75><69><EFBFBD><EFBFBD><EFBFBD>õľ<C3B5>̬<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>nginx<6E><78><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʡ<EFBFBD>

View File

@@ -369,7 +369,7 @@
<properties>
<!--当前环境-->
<profileName>dev</profileName>
<nacosServerAddr>192.168.2.248:8848</nacosServerAddr>
<nacosServerAddr>192.168.9.58:18848</nacosServerAddr>
<nacosNamespace>wfc-dev</nacosNamespace>
</properties>
</profile>

View File

@@ -15,7 +15,7 @@
<dependencies>
<!-- RuoYi Common Core-->
<!-- WFC Common Core-->
<dependency>
<groupId>org.wfc</groupId>
<artifactId>wfc-common-core</artifactId>

View File

@@ -17,7 +17,7 @@
<dependencies>
<!-- RuoYi Common Core-->
<!-- WFC Common Core-->
<dependency>
<groupId>org.wfc</groupId>
<artifactId>wfc-common-core</artifactId>

View File

@@ -13,7 +13,7 @@ import org.wfc.system.api.factory.RemoteFileFallbackFactory;
/**
* 文件服务
*
* @author ruoyi
* @author wfc
*/
@FeignClient(contextId = "remoteFileService", value = ServiceNameConstants.FILE_SERVICE, fallbackFactory = RemoteFileFallbackFactory.class)
public interface RemoteFileService

View File

@@ -14,7 +14,7 @@ import org.wfc.system.api.factory.RemoteLogFallbackFactory;
/**
* 日志服务
*
* @author ruoyi
* @author wfc
*/
@FeignClient(contextId = "remoteLogService", value = ServiceNameConstants.SYSTEM_SERVICE, fallbackFactory = RemoteLogFallbackFactory.class)
public interface RemoteLogService

View File

@@ -17,7 +17,7 @@ import org.wfc.system.api.model.LoginUser;
/**
* 用户服务
*
* @author ruoyi
* @author wfc
*/
@FeignClient(contextId = "remoteUserService", value = ServiceNameConstants.SYSTEM_SERVICE, fallbackFactory = RemoteUserFallbackFactory.class)
public interface RemoteUserService

View File

@@ -14,7 +14,7 @@ import java.util.List;
/**
* 部门表 sys_dept
*
* @author ruoyi
* @author wfc
*/
public class SysDept extends BaseEntity
{

View File

@@ -12,7 +12,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
/**
* 字典数据表 sys_dict_data
*
* @author ruoyi
* @author wfc
*/
public class SysDictData extends BaseEntity
{

View File

@@ -12,7 +12,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
/**
* 字典类型表 sys_dict_type
*
* @author ruoyi
* @author wfc
*/
public class SysDictType extends BaseEntity
{

View File

@@ -6,7 +6,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
/**
* 文件信息
*
* @author ruoyi
* @author wfc
*/
public class SysFile
{

View File

@@ -9,7 +9,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
/**
* 系统访问记录表 sys_logininfor
*
* @author ruoyi
* @author wfc
*/
public class SysLogininfor extends BaseEntity
{

View File

@@ -9,7 +9,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
/**
* 操作日志记录表 oper_log
*
* @author ruoyi
* @author wfc
*/
public class SysOperLog extends BaseEntity
{

View File

@@ -13,7 +13,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
/**
* 角色表 sys_role
*
* @author ruoyi
* @author wfc
*/
public class SysRole extends BaseEntity
{

View File

@@ -15,7 +15,7 @@ import org.wfc.common.core.xss.Xss;
/**
* 用户对象 sys_user
*
* @author ruoyi
* @author wfc
*/
public class SysUser extends BaseEntity
{

View File

@@ -12,7 +12,7 @@ import org.wfc.system.api.domain.SysFile;
/**
* 文件服务降级处理
*
* @author ruoyi
* @author wfc
*/
@Component
public class RemoteFileFallbackFactory implements FallbackFactory<RemoteFileService>

View File

@@ -12,7 +12,7 @@ import org.wfc.system.api.domain.SysOperLog;
/**
* 日志服务降级处理
*
* @author ruoyi
* @author wfc
*/
@Component
public class RemoteLogFallbackFactory implements FallbackFactory<RemoteLogService>

View File

@@ -12,7 +12,7 @@ import org.wfc.system.api.model.LoginUser;
/**
* 用户服务降级处理
*
* @author ruoyi
* @author wfc
*/
@Component
public class RemoteUserFallbackFactory implements FallbackFactory<RemoteUserService>

View File

@@ -7,7 +7,7 @@ import org.wfc.system.api.domain.SysUser;
/**
* 用户信息
*
* @author ruoyi
* @author wfc
*/
public class LoginUser implements Serializable
{

View File

@@ -46,7 +46,7 @@
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- RuoYi Common Security-->
<!-- WFC Common Security-->
<dependency>
<groupId>org.wfc</groupId>
<artifactId>wfc-common-security</artifactId>

View File

@@ -8,7 +8,7 @@ import org.wfc.common.security.annotation.EnableRyFeignClients;
/**
* 认证授权中心
*
* @author ruoyi
* @author wfc
*/
@EnableRyFeignClients
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class })

View File

@@ -20,7 +20,7 @@ import org.wfc.system.api.model.LoginUser;
/**
* token 控制
*
* @author ruoyi
* @author wfc
*/
@RestController
public class TokenController

View File

@@ -3,7 +3,7 @@ package org.wfc.auth.form;
/**
* 用户登录对象
*
* @author ruoyi
* @author wfc
*/
public class LoginBody
{
@@ -17,6 +17,11 @@ public class LoginBody
*/
private String password;
/**
* 认证类型 用户u/客户sys
*/
private String authType;
public String getUsername()
{
return username;
@@ -36,4 +41,12 @@ public class LoginBody
{
this.password = password;
}
public String getAuthType() {
return authType;
}
public void setAuthType(String authType) {
this.authType = authType;
}
}

View File

@@ -3,7 +3,7 @@ package org.wfc.auth.form;
/**
* 用户注册对象
*
* @author ruoyi
* @author wfc
*/
public class RegisterBody extends LoginBody
{

View File

@@ -22,7 +22,7 @@ import org.wfc.system.api.model.LoginUser;
/**
* 登录校验方法
*
* @author ruoyi
* @author wfc
*/
@Component
public class SysLoginService

View File

@@ -15,7 +15,7 @@ import java.util.concurrent.TimeUnit;
/**
* 登录密码方法
*
* @author ruoyi
* @author wfc
*/
@Component
public class SysPasswordService

View File

@@ -12,7 +12,7 @@ import org.wfc.system.api.domain.SysLogininfor;
/**
* 记录日志方法
*
* @author ruoyi
* @author wfc
*/
@Component
public class SysRecordLogService

View File

@@ -0,0 +1,161 @@
package org.wfc.auth.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.wfc.common.core.constant.CacheConstants;
import org.wfc.common.core.constant.Constants;
import org.wfc.common.core.constant.SecurityConstants;
import org.wfc.common.core.constant.UserConstants;
import org.wfc.common.core.domain.R;
import org.wfc.common.core.enums.UserStatus;
import org.wfc.common.core.exception.ServiceException;
import org.wfc.common.core.text.Convert;
import org.wfc.common.core.utils.DateUtils;
import org.wfc.common.core.utils.StringUtils;
import org.wfc.common.core.utils.ip.IpUtils;
import org.wfc.common.redis.service.RedisService;
import org.wfc.common.security.utils.SecurityUtils;
import org.wfc.system.api.RemoteUserService;
import org.wfc.system.api.domain.SysUser;
import org.wfc.system.api.model.LoginUser;
/**
* 用户平台-登录校验方法
*
* @author wfc
*/
@Component
public class ULoginService
{
@Autowired
private RemoteUserService remoteUserService;
@Autowired
private SysPasswordService passwordService;
@Autowired
private SysRecordLogService recordLogService;
@Autowired
private RedisService redisService;
/**
* 登录
*/
public LoginUser login(String username, String password)
{
// 用户名或密码为空 错误
if (StringUtils.isAnyBlank(username, password))
{
recordLogService.recordLogininfor(username, Constants.LOGIN_FAIL, "用户/密码必须填写");
throw new ServiceException("user.password.not.blank");
}
// 密码如果不在指定范围内 错误
if (password.length() < UserConstants.PASSWORD_MIN_LENGTH
|| password.length() > UserConstants.PASSWORD_MAX_LENGTH)
{
recordLogService.recordLogininfor(username, Constants.LOGIN_FAIL, "用户密码不在指定范围");
throw new ServiceException("用户密码不在指定范围");
}
// 用户名不在指定范围内 错误
if (username.length() < UserConstants.USERNAME_MIN_LENGTH
|| username.length() > UserConstants.USERNAME_MAX_LENGTH)
{
recordLogService.recordLogininfor(username, Constants.LOGIN_FAIL, "用户名不在指定范围");
throw new ServiceException("用户名不在指定范围");
}
// IP黑名单校验
String blackStr = Convert.toStr(redisService.getCacheObject(CacheConstants.SYS_LOGIN_BLACKIPLIST));
if (IpUtils.isMatchedIp(blackStr, IpUtils.getIpAddr()))
{
recordLogService.recordLogininfor(username, Constants.LOGIN_FAIL, "很遗憾访问IP已被列入系统黑名单");
throw new ServiceException("很遗憾访问IP已被列入系统黑名单");
}
// 查询用户信息
R<LoginUser> userResult = remoteUserService.getUserInfo(username, SecurityConstants.INNER);
if (StringUtils.isNull(userResult) || StringUtils.isNull(userResult.getData()))
{
recordLogService.recordLogininfor(username, Constants.LOGIN_FAIL, "登录用户不存在");
throw new ServiceException("登录用户:" + username + " 不存在");
}
if (R.FAIL == userResult.getCode())
{
throw new ServiceException(userResult.getMsg());
}
LoginUser userInfo = userResult.getData();
SysUser user = userResult.getData().getSysUser();
if (UserStatus.DELETED.getCode().equals(user.getDelFlag()))
{
recordLogService.recordLogininfor(username, Constants.LOGIN_FAIL, "对不起,您的账号已被删除");
throw new ServiceException("对不起,您的账号:" + username + " 已被删除");
}
if (UserStatus.DISABLE.getCode().equals(user.getStatus()))
{
recordLogService.recordLogininfor(username, Constants.LOGIN_FAIL, "用户已停用,请联系管理员");
throw new ServiceException("对不起,您的账号:" + username + " 已停用");
}
passwordService.validate(user, password);
recordLogService.recordLogininfor(username, Constants.LOGIN_SUCCESS, "登录成功");
recordLoginInfo(user.getUserId());
return userInfo;
}
/**
* 记录登录信息
*
* @param userId 用户ID
*/
public void recordLoginInfo(Long userId)
{
SysUser sysUser = new SysUser();
sysUser.setUserId(userId);
// 更新用户登录IP
sysUser.setLoginIp(IpUtils.getIpAddr());
// 更新用户登录时间
sysUser.setLoginDate(DateUtils.getNowDate());
remoteUserService.recordUserLogin(sysUser, SecurityConstants.INNER);
}
public void logout(String loginName)
{
recordLogService.recordLogininfor(loginName, Constants.LOGOUT, "退出成功");
}
/**
* 注册
*/
public void register(String username, String password)
{
// 用户名或密码为空 错误
if (StringUtils.isAnyBlank(username, password))
{
throw new ServiceException("user.password.not.blank");
}
if (username.length() < UserConstants.USERNAME_MIN_LENGTH
|| username.length() > UserConstants.USERNAME_MAX_LENGTH)
{
throw new ServiceException("账户长度必须在2到20个字符之间");
}
if (password.length() < UserConstants.PASSWORD_MIN_LENGTH
|| password.length() > UserConstants.PASSWORD_MAX_LENGTH)
{
throw new ServiceException("密码长度必须在5到20个字符之间");
}
// 注册用户信息
SysUser sysUser = new SysUser();
sysUser.setUserName(username);
sysUser.setNickName(username);
sysUser.setPassword(SecurityUtils.encryptPassword(password));
R<?> registerResult = remoteUserService.registerUserInfo(sysUser, SecurityConstants.INNER);
if (R.FAIL == registerResult.getCode())
{
throw new ServiceException(registerResult.getMsg());
}
recordLogService.recordLogininfor(username, Constants.REGISTER, "注册成功");
}
}

View File

@@ -12,7 +12,7 @@ import org.wfc.common.core.utils.poi.ExcelHandlerAdapter;
/**
* 自定义导出Excel数据注解
*
* @author ruoyi
* @author wfc
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)

View File

@@ -8,7 +8,7 @@ import java.lang.annotation.Target;
/**
* Excel注解集
*
* @author ruoyi
* @author wfc
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.constant;
/**
* 缓存常量信息
*
* @author ruoyi
* @author wfc
*/
public class CacheConstants
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.constant;
/**
* 通用常量信息
*
* @author ruoyi
* @author wfc
*/
public class Constants
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.constant;
/**
* 代码生成通用常量
*
* @author ruoyi
* @author wfc
*/
public class GenConstants
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.constant;
/**
* 返回状态码
*
* @author ruoyi
* @author wfc
*/
public class HttpStatus
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.constant;
/**
* 任务调度通用常量
*
* @author ruoyi
* @author wfc
*/
public class ScheduleConstants
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.constant;
/**
* 权限相关通用常量
*
* @author ruoyi
* @author wfc
*/
public class SecurityConstants
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.constant;
/**
* 服务名称
*
* @author ruoyi
* @author wfc
*/
public class ServiceNameConstants
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.constant;
/**
* Token的Key常量
*
* @author ruoyi
* @author wfc
*/
public class TokenConstants
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.constant;
/**
* 用户常量信息
*
* @author ruoyi
* @author wfc
*/
public class UserConstants
{

View File

@@ -11,7 +11,7 @@ import org.wfc.common.core.utils.StringUtils;
* 获取当前线程变量中的 用户id、用户名称、Token等信息
* 注意: 必须在网关通过请求头的方法传入同时在HeaderInterceptor拦截器设置值。 否则这里无法获取
*
* @author ruoyi
* @author wfc
*/
public class SecurityContextHolder
{

View File

@@ -6,7 +6,7 @@ import org.wfc.common.core.constant.Constants;
/**
* 响应信息主体
*
* @author ruoyi
* @author wfc
*/
public class R<T> implements Serializable
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.enums;
/**
* 用户状态
*
* @author ruoyi
* @author wfc
*/
public enum UserStatus
{

View File

@@ -5,7 +5,7 @@ import org.wfc.common.core.exception.user.UserException;
/**
* 验证码错误异常类
*
* @author ruoyi
* @author wfc
*/
public class CaptchaException extends UserException
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception;
/**
* 检查异常
*
* @author ruoyi
* @author wfc
*/
public class CheckedException extends RuntimeException
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception;
/**
* 演示模式异常
*
* @author ruoyi
* @author wfc
*/
public class DemoModeException extends RuntimeException
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception;
/**
* 全局异常
*
* @author ruoyi
* @author wfc
*/
public class GlobalException extends RuntimeException
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception;
/**
* 内部认证异常
*
* @author ruoyi
* @author wfc
*/
public class InnerAuthException extends RuntimeException
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception;
/**
* 权限异常
*
* @author ruoyi
* @author wfc
*/
public class PreAuthorizeException extends RuntimeException
{

View File

@@ -6,7 +6,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 业务异常
*
* @author ruoyi
* @author wfc
*/
public final class ServiceException extends RuntimeException
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception;
/**
* 工具类异常
*
* @author ruoyi
* @author wfc
*/
public class UtilException extends RuntimeException
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception.auth;
/**
* 未能通过的登录认证异常
*
* @author ruoyi
* @author wfc
*/
public class NotLoginException extends RuntimeException
{

View File

@@ -5,7 +5,7 @@ import org.apache.commons.lang3.StringUtils;
/**
* 未能通过的权限认证异常
*
* @author ruoyi
* @author wfc
*/
public class NotPermissionException extends RuntimeException
{

View File

@@ -5,7 +5,7 @@ import org.apache.commons.lang3.StringUtils;
/**
* 未能通过的角色认证异常
*
* @author ruoyi
* @author wfc
*/
public class NotRoleException extends RuntimeException
{

View File

@@ -6,7 +6,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 基础异常
*
* @author ruoyi
* @author wfc
*/
public class BaseException extends RuntimeException
{

View File

@@ -5,7 +5,7 @@ import org.wfc.common.core.exception.base.BaseException;
/**
* 文件信息异常类
*
* @author ruoyi
* @author wfc
*/
public class FileException extends BaseException
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception.file;
/**
* 文件名称超长限制异常类
*
* @author ruoyi
* @author wfc
*/
public class FileNameLengthLimitExceededException extends FileException
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception.file;
/**
* 文件名大小限制异常类
*
* @author ruoyi
* @author wfc
*/
public class FileSizeLimitExceededException extends FileException
{

View File

@@ -6,7 +6,7 @@ import java.io.PrintWriter;
/**
* 文件上传异常类
*
* @author ruoyi
* @author wfc
*/
public class FileUploadException extends Exception
{

View File

@@ -5,7 +5,7 @@ import java.util.Arrays;
/**
* 文件上传 误异常类
*
* @author ruoyi
* @author wfc
*/
public class InvalidExtensionException extends FileUploadException
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception.job;
/**
* 计划策略异常
*
* @author ruoyi
* @author wfc
*/
public class TaskException extends Exception
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception.user;
/**
* 验证码失效异常类
*
* @author ruoyi
* @author wfc
*/
public class CaptchaExpireException extends UserException
{

View File

@@ -5,7 +5,7 @@ import org.wfc.common.core.exception.base.BaseException;
/**
* 用户信息异常类
*
* @author ruoyi
* @author wfc
*/
public class UserException extends BaseException
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.exception.user;
/**
* 用户密码不正确或不符合规范异常类
*
* @author ruoyi
* @author wfc
*/
public class UserPasswordNotMatchException extends UserException
{

View File

@@ -7,7 +7,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 字符集工具类
*
* @author ruoyi
* @author wfc
*/
public class CharsetKit
{

View File

@@ -12,7 +12,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 类型转换器
*
* @author ruoyi
* @author wfc
*/
public class Convert
{

View File

@@ -5,7 +5,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 字符串格式化
*
* @author ruoyi
* @author wfc
*/
public class StrFormatter
{

View File

@@ -14,7 +14,7 @@ import org.apache.commons.lang3.time.DateFormatUtils;
/**
* 时间工具类
*
* @author ruoyi
* @author wfc
*/
public class DateUtils extends org.apache.commons.lang3.time.DateUtils
{

View File

@@ -7,7 +7,7 @@ import org.apache.commons.lang3.exception.ExceptionUtils;
/**
* 错误信息处理类。
*
* @author ruoyi
* @author wfc
*/
public class ExceptionUtil
{

View File

@@ -11,7 +11,7 @@ import io.jsonwebtoken.SignatureAlgorithm;
/**
* Jwt工具类
*
* @author ruoyi
* @author wfc
*/
public class JwtUtils
{

View File

@@ -8,7 +8,7 @@ import org.wfc.common.core.web.page.TableSupport;
/**
* 分页工具类
*
* @author ruoyi
* @author wfc
*/
public class PageUtils extends PageHelper
{

View File

@@ -30,7 +30,7 @@ import reactor.core.publisher.Mono;
/**
* 客户端工具类
*
* @author ruoyi
* @author wfc
*/
public class ServletUtils
{

View File

@@ -10,7 +10,7 @@ import org.springframework.stereotype.Component;
/**
* spring工具类 方便在非spring管理环境中获取bean
*
* @author ruoyi
* @author wfc
*/
@Component
public final class SpringUtils implements BeanFactoryPostProcessor

View File

@@ -10,7 +10,7 @@ import org.wfc.common.core.text.StrFormatter;
/**
* 字符串工具类
*
* @author ruoyi
* @author wfc
*/
public class StringUtils extends org.apache.commons.lang3.StringUtils
{

View File

@@ -9,7 +9,7 @@ import java.util.regex.Pattern;
/**
* Bean 工具类
*
* @author ruoyi
* @author wfc
*/
public class BeanUtils extends org.springframework.beans.BeanUtils
{

View File

@@ -8,7 +8,7 @@ import javax.validation.Validator;
/**
* bean对象属性验证
*
* @author ruoyi
* @author wfc
*/
public class BeanValidators
{

View File

@@ -9,14 +9,14 @@ import org.springframework.web.multipart.MultipartFile;
/**
* 文件类型工具类
*
* @author ruoyi
* @author wfc
*/
public class FileTypeUtils
{
/**
* 获取文件类型
* <p>
* 例如: ruoyi.txt, 返回: txt
* 例如: wfc.txt, 返回: txt
*
* @param file 文件名
* @return 后缀(不含".")
@@ -33,7 +33,7 @@ public class FileTypeUtils
/**
* 获取文件类型
* <p>
* 例如: ruoyi.txt, 返回: txt
* 例如: wfc.txt, 返回: txt
*
* @param fileName 文件名
* @return 后缀(不含".")

View File

@@ -16,7 +16,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 文件处理工具类
*
* @author ruoyi
* @author wfc
*/
public class FileUtils
{

View File

@@ -12,7 +12,7 @@ import org.slf4j.LoggerFactory;
/**
* 图片处理工具类
*
* @author ruoyi
* @author wfc
*/
public class ImageUtils
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.utils.file;
/**
* 媒体类型工具类
*
* @author ruoyi
* @author wfc
*/
public class MimeTypeUtils
{

View File

@@ -5,7 +5,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 转义和反转义工具类
*
* @author ruoyi
* @author wfc
*/
public class EscapeUtil
{

View File

@@ -13,7 +13,7 @@ import java.util.regex.Pattern;
/**
* HTML过滤器用于去除XSS漏洞隐患。
*
* @author ruoyi
* @author wfc
*/
public final class HTMLFilter
{

View File

@@ -9,7 +9,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 获取IP方法
*
* @author ruoyi
* @author wfc
*/
public class IpUtils
{

View File

@@ -6,7 +6,7 @@ import org.apache.poi.ss.usermodel.Workbook;
/**
* Excel数据格式处理适配器
*
* @author ruoyi
* @author wfc
*/
public interface ExcelHandlerAdapter
{

View File

@@ -67,7 +67,7 @@ import org.wfc.common.core.utils.reflect.ReflectUtils;
/**
* Excel相关处理
*
* @author ruoyi
* @author wfc
*/
public class ExcelUtil<T>
{

View File

@@ -18,7 +18,7 @@ import org.wfc.common.core.utils.DateUtils;
/**
* 反射工具类. 提供调用getter/setter方法, 访问私有变量, 调用私有方法, 获取泛型类型Class, 被AOP过的真实类等工具函数.
*
* @author ruoyi
* @author wfc
*/
@SuppressWarnings("rawtypes")
public class ReflectUtils

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.utils.sign;
/**
* Base64工具类
*
* @author ruoyi
* @author wfc
*/
public final class Base64
{

View File

@@ -6,7 +6,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* sql操作工具类
*
* @author ruoyi
* @author wfc
*/
public class SqlUtil
{

View File

@@ -3,7 +3,7 @@ package org.wfc.common.core.utils.uuid;
/**
* ID生成器工具类
*
* @author ruoyi
* @author wfc
*/
public class IdUtils
{

View File

@@ -5,7 +5,7 @@ import org.wfc.common.core.utils.DateUtils;
import org.wfc.common.core.utils.StringUtils;
/**
* @author ruoyi 序列生成类
* @author wfc 序列生成类
*/
public class Seq
{

View File

@@ -10,7 +10,7 @@ import org.wfc.common.core.exception.UtilException;
/**
* 提供通用唯一识别码universally unique identifierUUID实现
*
* @author ruoyi
* @author wfc
*/
public final class UUID implements java.io.Serializable, Comparable<UUID>
{

View File

@@ -17,7 +17,7 @@ import org.wfc.common.core.web.page.TableDataInfo;
/**
* web层通用数据处理
*
* @author ruoyi
* @author wfc
*/
public class BaseController
{

View File

@@ -8,7 +8,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 操作消息提醒
*
* @author ruoyi
* @author wfc
*/
public class AjaxResult extends HashMap<String, Object>
{

View File

@@ -11,7 +11,7 @@ import com.fasterxml.jackson.annotation.JsonInclude;
/**
* Entity基类
*
* @author ruoyi
* @author wfc
*/
public class BaseEntity implements Serializable
{

View File

@@ -6,7 +6,7 @@ import java.util.List;
/**
* Tree基类
*
* @author ruoyi
* @author wfc
*/
public class TreeEntity extends BaseEntity
{

View File

@@ -5,7 +5,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 分页数据
*
* @author ruoyi
* @author wfc
*/
public class PageDomain
{

View File

@@ -6,7 +6,7 @@ import java.util.List;
/**
* 表格分页数据对象
*
* @author ruoyi
* @author wfc
*/
public class TableDataInfo implements Serializable
{

View File

@@ -6,7 +6,7 @@ import org.wfc.common.core.utils.ServletUtils;
/**
* 表格数据处理
*
* @author ruoyi
* @author wfc
*/
public class TableSupport
{

View File

@@ -10,7 +10,7 @@ import java.lang.annotation.Target;
/**
* 自定义xss校验注解
*
* @author ruoyi
* @author wfc
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(value = { ElementType.METHOD, ElementType.FIELD, ElementType.CONSTRUCTOR, ElementType.PARAMETER })

View File

@@ -9,7 +9,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 自定义xss校验注解实现
*
* @author ruoyi
* @author wfc
*/
public class XssValidator implements ConstraintValidator<Xss, String>
{

Some files were not shown because too many files have changed in this diff Show More