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

@@ -8,7 +8,7 @@ import org.wfc.common.security.annotation.EnableRyFeignClients;
/**
* 系统模块
*
* @author ruoyi
* @author wfc
*/
@EnableCustomConfig
@EnableRyFeignClients

View File

@@ -26,7 +26,7 @@ import org.wfc.system.service.ISysConfigService;
/**
* 参数配置 信息操作处理
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/config")

View File

@@ -21,7 +21,7 @@ import java.util.List;
/**
* 部门信息
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/dept")

View File

@@ -29,7 +29,7 @@ import org.wfc.system.service.ISysDictTypeService;
/**
* 数据字典信息
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/dict/data")

View File

@@ -26,7 +26,7 @@ import org.wfc.system.service.ISysDictTypeService;
/**
* 数据字典信息
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/dict/type")

View File

@@ -26,7 +26,7 @@ import org.wfc.system.service.ISysLogininforService;
/**
* 系统访问记录
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/logininfor")

View File

@@ -24,7 +24,7 @@ import java.util.Map;
/**
* 菜单信息
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/menu")

View File

@@ -24,7 +24,7 @@ import org.wfc.system.service.ISysNoticeService;
/**
* 公告 信息操作处理
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/notice")

View File

@@ -24,7 +24,7 @@ import org.wfc.system.service.ISysOperLogService;
/**
* 操作日志记录
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/operlog")

View File

@@ -26,7 +26,7 @@ import org.wfc.system.service.ISysPostService;
/**
* 岗位信息操作处理
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/post")

View File

@@ -29,7 +29,7 @@ import org.wfc.system.service.ISysUserService;
/**
* 个人信息 业务处理
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/user/profile")

View File

@@ -31,7 +31,7 @@ import org.wfc.system.service.ISysUserService;
/**
* 角色信息
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/role")

View File

@@ -48,7 +48,7 @@ import java.util.stream.Collectors;
/**
* 用户信息
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/user")

View File

@@ -26,7 +26,7 @@ import org.wfc.system.service.ISysUserOnlineService;
/**
* 在线用户监控
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/online")

View File

@@ -11,7 +11,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
/**
* 参数配置表 sys_config
*
* @author ruoyi
* @author wfc
*/
public class SysConfig extends BaseEntity
{

View File

@@ -12,7 +12,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
/**
* 菜单权限表 sys_menu
*
* @author ruoyi
* @author wfc
*/
public class SysMenu extends BaseEntity
{

View File

@@ -10,7 +10,7 @@ import org.wfc.common.core.xss.Xss;
/**
* 通知公告表 sys_notice
*
* @author ruoyi
* @author wfc
*/
public class SysNotice extends BaseEntity
{

View File

@@ -12,7 +12,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
/**
* 岗位表 sys_post
*
* @author ruoyi
* @author wfc
*/
public class SysPost extends BaseEntity
{

View File

@@ -6,7 +6,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
/**
* 角色和部门关联 sys_role_dept
*
* @author ruoyi
* @author wfc
*/
public class SysRoleDept
{

View File

@@ -6,7 +6,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
/**
* 角色和菜单关联 sys_role_menu
*
* @author ruoyi
* @author wfc
*/
public class SysRoleMenu
{

View File

@@ -3,7 +3,7 @@ package org.wfc.system.domain;
/**
* 当前在线会话
*
* @author ruoyi
* @author wfc
*/
public class SysUserOnline
{

View File

@@ -6,7 +6,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
/**
* 用户和岗位关联 sys_user_post
*
* @author ruoyi
* @author wfc
*/
public class SysUserPost
{

View File

@@ -6,7 +6,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
/**
* 用户和角色关联 sys_user_role
*
* @author ruoyi
* @author wfc
*/
public class SysUserRole
{

View File

@@ -5,7 +5,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 路由显示信息
*
* @author ruoyi
* @author wfc
*/
public class MetaVo
{

View File

@@ -6,7 +6,7 @@ import java.util.List;
/**
* 路由配置信息
*
* @author ruoyi
* @author wfc
*/
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class RouterVo

View File

@@ -10,7 +10,7 @@ import org.wfc.system.domain.SysMenu;
/**
* Treeselect树结构实体类
*
* @author ruoyi
* @author wfc
*/
public class TreeSelect implements Serializable
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.domain.SysConfig;
/**
* 参数配置 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysConfigMapper
{

View File

@@ -7,7 +7,7 @@ import org.wfc.system.api.domain.SysDept;
/**
* 部门管理 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysDeptMapper
{

View File

@@ -7,7 +7,7 @@ import org.wfc.system.api.domain.SysDictData;
/**
* 字典表 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysDictDataMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.api.domain.SysDictType;
/**
* 字典表 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysDictTypeMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.api.domain.SysLogininfor;
/**
* 系统访问日志情况信息 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysLogininforMapper
{

View File

@@ -7,7 +7,7 @@ import org.wfc.system.domain.SysMenu;
/**
* 菜单表 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysMenuMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.domain.SysNotice;
/**
* 通知公告表 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysNoticeMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.api.domain.SysOperLog;
/**
* 操作日志 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysOperLogMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.domain.SysPost;
/**
* 岗位信息 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysPostMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.domain.SysRoleDept;
/**
* 角色与部门关联表 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysRoleDeptMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.api.domain.SysRole;
/**
* 角色表 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysRoleMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.domain.SysRoleMenu;
/**
* 角色与菜单关联表 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysRoleMenuMapper
{

View File

@@ -7,7 +7,7 @@ import org.wfc.system.api.domain.SysUser;
/**
* 用户表 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysUserMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.domain.SysUserPost;
/**
* 用户与岗位关联表 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysUserPostMapper
{

View File

@@ -7,7 +7,7 @@ import org.wfc.system.domain.SysUserRole;
/**
* 用户与角色关联表 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysUserRoleMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.domain.SysConfig;
/**
* 参数配置 服务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysConfigService
{

View File

@@ -7,7 +7,7 @@ import org.wfc.system.domain.vo.TreeSelect;
/**
* 部门管理 服务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysDeptService
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.api.domain.SysDictData;
/**
* 字典 业务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysDictDataService
{

View File

@@ -7,7 +7,7 @@ import org.wfc.system.api.domain.SysDictType;
/**
* 字典 业务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysDictTypeService
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.api.domain.SysLogininfor;
/**
* 系统访问日志情况信息 服务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysLogininforService
{

View File

@@ -9,7 +9,7 @@ import org.wfc.system.domain.vo.TreeSelect;
/**
* 菜单 业务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysMenuService
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.domain.SysNotice;
/**
* 公告 服务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysNoticeService
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.api.domain.SysOperLog;
/**
* 操作日志 服务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysOperLogService
{

View File

@@ -7,7 +7,7 @@ import org.wfc.system.api.domain.SysUser;
/**
* 权限信息 服务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysPermissionService
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.domain.SysPost;
/**
* 岗位信息 服务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysPostService
{

View File

@@ -8,7 +8,7 @@ import org.wfc.system.domain.SysUserRole;
/**
* 角色业务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysRoleService
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.domain.SysUserOnline;
/**
* 在线用户 服务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysUserOnlineService
{

View File

@@ -6,7 +6,7 @@ import org.wfc.system.api.domain.SysUser;
/**
* 用户 业务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysUserService
{

View File

@@ -18,7 +18,7 @@ import org.wfc.system.service.ISysConfigService;
/**
* 参数配置 服务层实现
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysConfigServiceImpl implements ISysConfigService

View File

@@ -24,7 +24,7 @@ import org.wfc.system.service.ISysDeptService;
/**
* 部门管理 服务实现
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysDeptServiceImpl implements ISysDeptService

View File

@@ -11,7 +11,7 @@ import org.wfc.system.service.ISysDictDataService;
/**
* 字典 业务层处理
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysDictDataServiceImpl implements ISysDictDataService

View File

@@ -21,7 +21,7 @@ import org.wfc.system.service.ISysDictTypeService;
/**
* 字典 业务层处理
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysDictTypeServiceImpl implements ISysDictTypeService

View File

@@ -10,7 +10,7 @@ import org.wfc.system.service.ISysLogininforService;
/**
* 系统访问日志情况信息 服务层处理
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysLogininforServiceImpl implements ISysLogininforService

View File

@@ -23,7 +23,7 @@ import java.util.stream.Collectors;
/**
* 菜单 业务层处理
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysMenuServiceImpl implements ISysMenuService

View File

@@ -10,7 +10,7 @@ import org.wfc.system.service.ISysNoticeService;
/**
* 公告 服务层实现
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysNoticeServiceImpl implements ISysNoticeService

View File

@@ -10,7 +10,7 @@ import org.wfc.system.service.ISysOperLogService;
/**
* 操作日志 服务层处理
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysOperLogServiceImpl implements ISysOperLogService

View File

@@ -17,7 +17,7 @@ import org.wfc.system.service.ISysRoleService;
/**
* 用户权限处理
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysPermissionServiceImpl implements ISysPermissionService

View File

@@ -14,7 +14,7 @@ import org.wfc.system.service.ISysPostService;
/**
* 岗位信息 服务层处理
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysPostServiceImpl implements ISysPostService

View File

@@ -28,7 +28,7 @@ import org.wfc.system.service.ISysRoleService;
/**
* 角色 业务层处理
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysRoleServiceImpl implements ISysRoleService

View File

@@ -9,7 +9,7 @@ import org.wfc.system.service.ISysUserOnlineService;
/**
* 在线用户 服务层处理
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysUserOnlineServiceImpl implements ISysUserOnlineService

View File

@@ -34,7 +34,7 @@ import org.wfc.system.service.ISysUserService;
/**
* 用户 业务层处理
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysUserServiceImpl implements ISysUserService