🚚 项目名称及目录名称变更

This commit is contained in:
ronger 2020-11-19 11:52:13 +08:00
parent fac694cd67
commit 287c9ab1a3
216 changed files with 699 additions and 726 deletions

View File

@ -9,11 +9,11 @@
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.rymcu</groupId>
<artifactId>vertical</artifactId>
<artifactId>forest</artifactId>
<version>0.0.1</version>
<packaging>war</packaging>
<name>vertical</name>
<description>一个用 Java 实现的现代化社区(论坛 / BBS / 社交网络 / 博客)平台,“下一代的社区系统,为未来而构建”</description>
<name>forest</name>
<description>forest(森林) —— 一款现代化的知识社区后台项目,使用 SpringBoot + Shrio + MyBatis + JWT + Redis 实现</description>
<properties>
<java.version>1.8</java.version>
@ -94,7 +94,7 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.60</version>
<version>1.2.67</version>
</dependency>
<!-- shiro权限控制框架 -->
<dependency>

View File

@ -1,13 +1,13 @@
package com.rymcu.vertical;
package com.rymcu.forest;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class VerticalApplication {
public class ForestApplication {
public static void main(String[] args) {
SpringApplication.run(VerticalApplication.class, args);
SpringApplication.run(ForestApplication.class, args);
}
}

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical;
package com.rymcu.forest;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
@ -7,7 +7,7 @@ public class ServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(VerticalApplication.class);
return application.sources(ForestApplication.class);
}
}

View File

@ -1,10 +1,10 @@
package com.rymcu.vertical.config;
package com.rymcu.forest.config;
import com.alibaba.fastjson.support.spring.FastJsonJsonView;
import com.rymcu.vertical.core.exception.ServiceException;
import com.rymcu.vertical.core.result.GlobalResult;
import com.rymcu.vertical.core.result.ResultCode;
import com.rymcu.vertical.web.api.exception.BaseApiException;
import com.rymcu.forest.core.exception.ServiceException;
import com.rymcu.forest.core.result.GlobalResult;
import com.rymcu.forest.core.result.ResultCode;
import com.rymcu.forest.web.api.exception.BaseApiException;
import org.apache.shiro.authz.UnauthenticatedException;
import org.apache.shiro.authz.UnauthorizedException;
import org.slf4j.Logger;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.config;
package com.rymcu.forest.config;
import org.apache.shiro.web.servlet.ShiroHttpServletRequest;
import org.apache.shiro.web.session.mgt.DefaultWebSessionManager;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.config;
package com.rymcu.forest.config;
import org.apache.shiro.mgt.SecurityManager;
import org.apache.shiro.spring.web.ShiroFilterFactoryBean;

View File

@ -1,15 +1,15 @@
package com.rymcu.vertical.config;
package com.rymcu.forest.config;
import com.rymcu.vertical.core.constant.ShiroConstants;
import com.rymcu.vertical.core.exception.CaptchaException;
import com.rymcu.vertical.entity.Permission;
import com.rymcu.vertical.entity.Role;
import com.rymcu.vertical.entity.User;
import com.rymcu.vertical.service.PermissionService;
import com.rymcu.vertical.service.RoleService;
import com.rymcu.vertical.service.UserService;
import com.rymcu.vertical.util.Encodes;
import com.rymcu.vertical.util.Utils;
import com.rymcu.forest.core.constant.ShiroConstants;
import com.rymcu.forest.core.exception.CaptchaException;
import com.rymcu.forest.entity.Permission;
import com.rymcu.forest.entity.Role;
import com.rymcu.forest.entity.User;
import com.rymcu.forest.service.PermissionService;
import com.rymcu.forest.service.RoleService;
import com.rymcu.forest.service.UserService;
import com.rymcu.forest.util.Encodes;
import com.rymcu.forest.util.Utils;
import org.apache.commons.lang3.StringUtils;
import org.apache.ibatis.exceptions.TooManyResultsException;
import org.apache.shiro.authc.*;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.config;
package com.rymcu.forest.config;
import com.github.pagehelper.PageInterceptor;
import org.apache.ibatis.plugin.Interceptor;
@ -13,7 +13,7 @@ import tk.mybatis.spring.mapper.MapperScannerConfigurer;
import javax.sql.DataSource;
import java.util.Properties;
import static com.rymcu.vertical.core.constant.ProjectConstant.*;
import static com.rymcu.forest.core.constant.ProjectConstant.*;
/**
@ -45,7 +45,7 @@ public class MybatisConfigurer {
//添加XML目录
ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
factory.setMapperLocations(resolver.getResources("classpath:mapper/**/*.xml"));
factory.setTypeHandlersPackage("com.rymcu.vertical.util.handlers");
factory.setTypeHandlersPackage("com.rymcu.forest.util.handlers");
return factory.getObject();
}

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.config;
package com.rymcu.forest.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import redis.clients.jedis.JedisPoolConfig;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.config;
package com.rymcu.forest.config;
import org.apache.shiro.authc.credential.HashedCredentialsMatcher;
import org.apache.shiro.mgt.SecurityManager;

View File

@ -1,8 +1,8 @@
package com.rymcu.vertical.config;
package com.rymcu.forest.config;
import com.alibaba.fastjson.JSONObject;
import com.rymcu.vertical.core.result.GlobalResultGenerator;
import com.rymcu.forest.core.result.GlobalResultGenerator;
import org.apache.shiro.web.filter.authc.FormAuthenticationFilter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.config;
package com.rymcu.forest.config;
/**
* 用户和密码包含验证码令牌类

View File

@ -1,10 +1,10 @@
package com.rymcu.vertical.config;
package com.rymcu.forest.config;
import com.alibaba.fastjson.serializer.SerializerFeature;
import com.alibaba.fastjson.support.config.FastJsonConfig;
import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter;
import com.rymcu.vertical.jwt.aop.RestAuthTokenInterceptor;
import com.rymcu.forest.jwt.aop.RestAuthTokenInterceptor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Bean;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.config;
package com.rymcu.forest.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.messaging.simp.config.MessageBrokerRegistry;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.constant;
package com.rymcu.forest.core.constant;
/**
* 消息通知类型

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.constant;
package com.rymcu.forest.core.constant;
/**
* 项目常量
@ -8,7 +8,7 @@ public final class ProjectConstant {
/**当前环境*/
public static final String ENV = "dev";
/**项目基础包名称,根据自己公司的项目修改*/
public static final String BASE_PACKAGE = "com.rymcu.vertical";
public static final String BASE_PACKAGE = "com.rymcu.forest";
/**DTO所在包*/
public static final String DTO_PACKAGE = BASE_PACKAGE + ".dto";
/**Model所在包*/

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.constant;
package com.rymcu.forest.core.constant;
/**
* Shiro通用常量

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.exception;
package com.rymcu.forest.core.exception;
import org.apache.shiro.authc.AuthenticationException;

View File

@ -1,7 +1,7 @@
package com.rymcu.vertical.core.exception;
package com.rymcu.forest.core.exception;
import com.rymcu.vertical.core.result.ResultCode;
import com.rymcu.forest.core.result.ResultCode;
/**
* 服务业务异常如 账号或密码错误 该异常只做INFO级别的日志记录 @see WebMvcConfigurer

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.mapper;
package com.rymcu.forest.core.mapper;
import tk.mybatis.mapper.common.BaseMapper;
import tk.mybatis.mapper.common.ConditionMapper;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.mapper;
package com.rymcu.forest.core.mapper;
import java.util.List;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.result;
package com.rymcu.forest.core.result;
import lombok.Data;

View File

@ -1,6 +1,6 @@
package com.rymcu.vertical.core.result;
package com.rymcu.forest.core.result;
import com.rymcu.vertical.util.ErrorCode;
import com.rymcu.forest.util.ErrorCode;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.result;
package com.rymcu.forest.core.result;
import lombok.Getter;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.result;
package com.rymcu.forest.core.result;
/**
* 响应码枚举参考HTTP状态码的语义

View File

@ -1,8 +1,8 @@
package com.rymcu.vertical.core.service;
package com.rymcu.forest.core.service;
import com.rymcu.vertical.core.exception.ServiceException;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.forest.core.exception.ServiceException;
import com.rymcu.forest.core.mapper.Mapper;
import org.apache.ibatis.exceptions.TooManyResultsException;
import org.springframework.beans.factory.annotation.Autowired;
import tk.mybatis.mapper.entity.Condition;

View File

@ -1,6 +1,6 @@
package com.rymcu.vertical.core.service;
package com.rymcu.forest.core.service;
import com.rymcu.vertical.core.exception.ServiceException;
import com.rymcu.forest.core.exception.ServiceException;
import org.apache.ibatis.exceptions.TooManyResultsException;
import tk.mybatis.mapper.entity.Condition;

View File

@ -1,13 +1,13 @@
package com.rymcu.vertical.core.service.log;
package com.rymcu.forest.core.service.log;
import com.rymcu.vertical.core.service.log.constant.LoggerConstant;
import com.rymcu.vertical.dto.TokenUser;
import com.rymcu.vertical.entity.Visit;
import com.rymcu.vertical.jwt.def.JwtConstants;
import com.rymcu.vertical.service.ArticleService;
import com.rymcu.vertical.service.VisitService;
import com.rymcu.vertical.util.UserUtils;
import com.rymcu.vertical.util.Utils;
import com.rymcu.forest.core.service.log.constant.LoggerConstant;
import com.rymcu.forest.dto.TokenUser;
import com.rymcu.forest.entity.Visit;
import com.rymcu.forest.jwt.def.JwtConstants;
import com.rymcu.forest.service.ArticleService;
import com.rymcu.forest.service.VisitService;
import com.rymcu.forest.util.UserUtils;
import com.rymcu.forest.util.Utils;
import org.apache.commons.lang.StringUtils;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.AfterReturning;
@ -42,7 +42,7 @@ public class VisitAspect {
@Resource
private VisitService visitService;
@Pointcut("@annotation(com.rymcu.vertical.core.service.log.annotation.VisitLogger)")
@Pointcut("@annotation(com.rymcu.forest.core.service.log.annotation.VisitLogger)")
public void pointCut() {}
/**

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.service.log.annotation;
package com.rymcu.forest.core.service.log.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.service.log.constant;
package com.rymcu.forest.core.service.log.constant;
/**
* @author ronger

View File

@ -1,6 +1,6 @@
package com.rymcu.vertical.core.service.redis;
package com.rymcu.forest.core.service.redis;
import com.rymcu.vertical.entity.BaseDO;
import com.rymcu.forest.entity.BaseDO;
import java.util.List;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.service.redis;
package com.rymcu.forest.core.service.redis;
import com.fasterxml.jackson.databind.ObjectMapper;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.core.service.redis.impl;
package com.rymcu.forest.core.service.redis.impl;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;

View File

@ -1,11 +1,11 @@
package com.rymcu.vertical.core.service.redis.impl;
package com.rymcu.forest.core.service.redis.impl;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.TypeReference;
import com.fasterxml.jackson.databind.JavaType;
import com.rymcu.vertical.config.RedisProperties;
import com.rymcu.vertical.core.service.redis.RedisResult;
import com.rymcu.vertical.core.service.redis.RedisService;
import com.rymcu.forest.config.RedisProperties;
import com.rymcu.forest.core.service.redis.RedisResult;
import com.rymcu.forest.core.service.redis.RedisService;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,6 +1,6 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import com.rymcu.vertical.entity.Notification;
import com.rymcu.forest.entity.Notification;
import lombok.Data;
import lombok.EqualsAndHashCode;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto;
package com.rymcu.forest.dto;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto.admin;
package com.rymcu.forest.dto.admin;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto.admin;
package com.rymcu.forest.dto.admin;
import lombok.Data;

View File

@ -1,6 +1,6 @@
package com.rymcu.vertical.dto.admin;
package com.rymcu.forest.dto.admin;
import com.rymcu.vertical.dto.Author;
import com.rymcu.forest.dto.Author;
import lombok.Data;
/**

View File

@ -1,6 +1,5 @@
package com.rymcu.vertical.dto.admin;
package com.rymcu.forest.dto.admin;
import com.rymcu.vertical.dto.Author;
import lombok.Data;
import java.util.List;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto.admin;
package com.rymcu.forest.dto.admin;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto.admin;
package com.rymcu.forest.dto.admin;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.dto.baidu;
package com.rymcu.forest.dto.baidu;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import org.apache.commons.lang3.builder.ToStringBuilder;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;

View File

@ -1,7 +1,6 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import lombok.Data;
import org.apache.ibatis.type.JdbcType;
import tk.mybatis.mapper.annotation.ColumnType;
import javax.persistence.Column;
@ -9,7 +8,6 @@ import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
/**
* @author ronger

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.entity;
package com.rymcu.forest.entity;
import lombok.Data;

View File

@ -1,13 +1,13 @@
package com.rymcu.vertical.jwt.aop;
package com.rymcu.forest.jwt.aop;
import com.rymcu.vertical.jwt.def.JwtConstants;
import com.rymcu.vertical.jwt.model.TokenModel;
import com.rymcu.vertical.jwt.service.TokenManager;
import com.rymcu.vertical.jwt.util.oConvertUtils;
import com.rymcu.vertical.web.api.exception.ErrorCode;
import com.rymcu.vertical.web.api.exception.BaseApiException;
import com.rymcu.forest.jwt.def.JwtConstants;
import com.rymcu.forest.jwt.model.TokenModel;
import com.rymcu.forest.jwt.service.TokenManager;
import com.rymcu.forest.jwt.util.oConvertUtils;
import com.rymcu.forest.web.api.exception.ErrorCode;
import com.rymcu.forest.web.api.exception.BaseApiException;
import io.jsonwebtoken.Claims;
import io.jsonwebtoken.Jwts;
import io.jsonwebtoken.SignatureException;

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.jwt.def;
package com.rymcu.forest.jwt.def;
/**
* @author ronger

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.jwt.model;
package com.rymcu.forest.jwt.model;
/**
* Token的Model类可以增加字段提高安全性例如时间戳url签名

View File

@ -1,8 +1,8 @@
package com.rymcu.vertical.jwt.service;
package com.rymcu.forest.jwt.service;
import com.rymcu.vertical.jwt.def.JwtConstants;
import com.rymcu.vertical.jwt.model.TokenModel;
import com.rymcu.forest.jwt.def.JwtConstants;
import com.rymcu.forest.jwt.model.TokenModel;
import io.jsonwebtoken.Jwts;
import io.jsonwebtoken.SignatureAlgorithm;
import org.springframework.beans.factory.annotation.Autowired;

View File

@ -1,7 +1,7 @@
package com.rymcu.vertical.jwt.service;
package com.rymcu.forest.jwt.service;
import com.rymcu.vertical.jwt.model.TokenModel;
import com.rymcu.forest.jwt.model.TokenModel;
/**
* 对token进行操作的接口

View File

@ -1,4 +1,4 @@
package com.rymcu.vertical.jwt.util;
package com.rymcu.forest.jwt.util;
import org.apache.commons.lang.StringEscapeUtils;
import org.apache.commons.lang.StringUtils;

View File

@ -1,11 +1,11 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.vertical.dto.ArticleDTO;
import com.rymcu.vertical.dto.ArticleTagDTO;
import com.rymcu.vertical.dto.PortfolioArticleDTO;
import com.rymcu.vertical.entity.Article;
import com.rymcu.vertical.entity.ArticleContent;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.dto.ArticleDTO;
import com.rymcu.forest.dto.ArticleTagDTO;
import com.rymcu.forest.dto.PortfolioArticleDTO;
import com.rymcu.forest.entity.Article;
import com.rymcu.forest.entity.ArticleContent;
import org.apache.ibatis.annotations.Param;
import java.util.List;

View File

@ -1,9 +1,9 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.vertical.dto.Author;
import com.rymcu.vertical.dto.CommentDTO;
import com.rymcu.vertical.entity.Comment;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.dto.Author;
import com.rymcu.forest.dto.CommentDTO;
import com.rymcu.forest.entity.Comment;
import org.apache.ibatis.annotations.Param;
import java.util.List;

View File

@ -1,7 +1,6 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.dto.admin.DashboardData;
import org.apache.ibatis.annotations.Param;
import com.rymcu.forest.dto.admin.DashboardData;
import java.util.List;

View File

@ -1,8 +1,8 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.vertical.dto.UserDTO;
import com.rymcu.vertical.entity.Follow;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.dto.UserDTO;
import com.rymcu.forest.entity.Follow;
import org.apache.ibatis.annotations.Param;
import java.util.List;

View File

@ -1,7 +1,7 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.vertical.entity.Notification;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.entity.Notification;
import org.apache.ibatis.annotations.Param;
import java.util.List;

View File

@ -1,7 +1,7 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.vertical.entity.Permission;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.entity.Permission;
import org.apache.ibatis.annotations.Param;
import java.util.List;

View File

@ -1,8 +1,8 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.vertical.dto.PortfolioDTO;
import com.rymcu.vertical.entity.Portfolio;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.dto.PortfolioDTO;
import com.rymcu.forest.entity.Portfolio;
import org.apache.ibatis.annotations.Param;
import java.util.List;

View File

@ -1,8 +1,7 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.vertical.entity.Role;
import com.rymcu.vertical.entity.User;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.entity.Role;
import org.apache.ibatis.annotations.Param;
import java.util.List;

View File

@ -0,0 +1,10 @@
package com.rymcu.forest.mapper;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.entity.SpecialDay;
/**
* @author ronger
*/
public interface SpecialDayMapper extends Mapper<SpecialDay> {
}

View File

@ -1,8 +1,8 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.vertical.dto.LabelModel;
import com.rymcu.vertical.entity.Tag;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.dto.LabelModel;
import com.rymcu.forest.entity.Tag;
import org.apache.ibatis.annotations.Param;
import java.util.List;

View File

@ -1,10 +1,10 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.vertical.dto.admin.TagDTO;
import com.rymcu.vertical.dto.admin.TopicDTO;
import com.rymcu.vertical.entity.Tag;
import com.rymcu.vertical.entity.Topic;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.dto.admin.TagDTO;
import com.rymcu.forest.dto.admin.TopicDTO;
import com.rymcu.forest.entity.Tag;
import com.rymcu.forest.entity.Topic;
import org.apache.ibatis.annotations.Param;
import java.util.List;

View File

@ -1,7 +1,7 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.vertical.entity.UserExtend;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.entity.UserExtend;
import org.apache.ibatis.annotations.Param;
/**

View File

@ -1,14 +1,12 @@
package com.rymcu.vertical.mapper;
package com.rymcu.forest.mapper;
import com.rymcu.vertical.core.mapper.Mapper;
import com.rymcu.vertical.dto.Author;
import com.rymcu.vertical.dto.UserDTO;
import com.rymcu.vertical.dto.UserInfoDTO;
import com.rymcu.vertical.entity.User;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.dto.Author;
import com.rymcu.forest.dto.UserDTO;
import com.rymcu.forest.dto.UserInfoDTO;
import com.rymcu.forest.entity.User;
import org.apache.ibatis.annotations.Param;
import java.util.Map;
/**
* @author ronger
*/

View File

@ -0,0 +1,10 @@
package com.rymcu.forest.mapper;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.entity.Visit;
/**
* @author ronger
*/
public interface VisitMapper extends Mapper<Visit> {
}

View File

@ -0,0 +1,10 @@
package com.rymcu.forest.mapper;
import com.rymcu.forest.core.mapper.Mapper;
import com.rymcu.forest.entity.WxUser;
/**
* @author ronger
*/
public interface WxUserMapper extends Mapper<WxUser> {
}

View File

@ -1,10 +1,10 @@
package com.rymcu.vertical.service;
package com.rymcu.forest.service;
import com.rymcu.vertical.core.service.Service;
import com.rymcu.vertical.dto.ArticleDTO;
import com.rymcu.vertical.dto.ArticleSearchDTO;
import com.rymcu.vertical.entity.Article;
import com.rymcu.vertical.web.api.exception.BaseApiException;
import com.rymcu.forest.core.service.Service;
import com.rymcu.forest.dto.ArticleDTO;
import com.rymcu.forest.dto.ArticleSearchDTO;
import com.rymcu.forest.entity.Article;
import com.rymcu.forest.web.api.exception.BaseApiException;
import javax.servlet.http.HttpServletRequest;
import java.io.UnsupportedEncodingException;

View File

@ -1,8 +1,8 @@
package com.rymcu.vertical.service;
package com.rymcu.forest.service;
import com.rymcu.vertical.core.service.Service;
import com.rymcu.vertical.dto.CommentDTO;
import com.rymcu.vertical.entity.Comment;
import com.rymcu.forest.core.service.Service;
import com.rymcu.forest.dto.CommentDTO;
import com.rymcu.forest.entity.Comment;
import javax.servlet.http.HttpServletRequest;
import java.util.List;

View File

@ -1,6 +1,6 @@
package com.rymcu.vertical.service;
package com.rymcu.forest.service;
import com.rymcu.vertical.dto.admin.Dashboard;
import com.rymcu.forest.dto.admin.Dashboard;
import java.util.Map;

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