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

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
{