代码INIT,修改基本框架

This commit is contained in:
limqhz
2022-05-01 22:41:10 +08:00
parent 3fdb3799ff
commit 5e12c34a3d
63 changed files with 189 additions and 119 deletions

View File

@@ -8,7 +8,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 服务类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-29
*/
public interface BlogCategoryService extends IService<BlogCategory> {

View File

@@ -8,7 +8,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 服务类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-29
*/
public interface BlogService extends IService<Blog> {

View File

@@ -8,7 +8,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 服务类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-30
*/
public interface CommentService extends IService<Comment> {

View File

@@ -8,7 +8,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 服务类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-07-08
*/
public interface DownloadService extends IService<Download> {

View File

@@ -8,7 +8,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 服务类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
public interface InviteService extends IService<Invite> {

View File

@@ -8,7 +8,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 服务类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
public interface QuestionCategoryService extends IService<QuestionCategory> {

View File

@@ -8,7 +8,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 服务类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
public interface QuestionService extends IService<Question> {

View File

@@ -8,7 +8,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 服务类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-07-01
*/
public interface SayService extends IService<Say> {

View File

@@ -8,7 +8,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 服务类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-29
*/
public interface UserInfoService extends IService<UserInfo> {

View File

@@ -8,7 +8,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 服务类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
public interface UserRoleService extends IService<UserRole> {

View File

@@ -8,7 +8,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 服务类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
public interface UserService extends IService<User> {

View File

@@ -11,7 +11,7 @@ import org.springframework.stereotype.Service;
* 服务实现类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-29
*/
@Service

View File

@@ -11,7 +11,7 @@ import org.springframework.stereotype.Service;
* 服务实现类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-29
*/
@Service

View File

@@ -11,7 +11,7 @@ import org.springframework.stereotype.Service;
* 服务实现类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-30
*/
@Service

View File

@@ -11,7 +11,7 @@ import org.springframework.stereotype.Service;
* 服务实现类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-07-08
*/
@Service

View File

@@ -11,7 +11,7 @@ import org.springframework.stereotype.Service;
* 服务实现类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
@Service

View File

@@ -11,7 +11,7 @@ import org.springframework.stereotype.Service;
* 服务实现类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
@Service

View File

@@ -11,7 +11,7 @@ import org.springframework.stereotype.Service;
* 服务实现类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
@Service

View File

@@ -11,7 +11,7 @@ import org.springframework.stereotype.Service;
* 服务实现类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-07-01
*/
@Service

View File

@@ -11,7 +11,7 @@ import org.springframework.stereotype.Service;
* 服务实现类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-29
*/
@Service

View File

@@ -11,7 +11,7 @@ import org.springframework.stereotype.Service;
* 服务实现类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
@Service

View File

@@ -25,7 +25,7 @@ import java.util.List;
* 服务实现类
* </p>
*
* @author 遇见狂神说
* @author limqsh
* @since 2020-06-28
*/
// UserDetailsService接口用于返回用户相关数据。