From b40ba2618cc6759d148bf769c58e03b747d58753 Mon Sep 17 00:00:00 2001
From: java_fpc <604772046@qq.com>
Date: Tue, 8 Mar 2022 11:54:26 +0800
Subject: [PATCH] d
---
mall-common/pom.xml | 2 +-
.../common/constant/AuthServerConstant.java | 2 +-
.../common/constant/CartConstant.java | 2 +-
.../common/constant/ProductConstant.java | 2 +-
.../common/constant/WareConstant.java | 2 +-
.../common/exception/BizCodeEnum.java | 2 +-
.../common/exception/BizCodeEnume.java | 2 +-
.../common/exception/NotStockException.java | 2 +-
.../common/exception/RRException.java | 2 +-
.../common/to/MemberPrice.java | 2 +-
.../common/to/SkuReductionTO.java | 2 +-
.../common/to/SpuBoundTO.java | 2 +-
.../common/to/es/SkuEsModel.java | 2 +-
.../common/to/es/SkuHasStockVo.java | 2 +-
.../common/to/mq/OrderTo.java | 2 +-
.../common/to/mq/SecKillOrderTo.java | 2 +-
.../common/to/mq/StockDetailTo.java | 2 +-
.../common/to/mq/StockLockedTo.java | 2 +-
.../common/utils/Constant.java | 2 +-
.../common/utils/HttpUtils.java | 2 +-
.../common/utils/PageUtils.java | 2 +-
.../{fpc => zenofung}/common/utils/Query.java | 4 +-
.../com/{fpc => zenofung}/common/utils/R.java | 5 +-
.../common/valid/AddGro.java | 2 +-
.../common/valid/ListValue.java | 2 +-
.../valid/ListValueConstraintValidator.java | 2 +-
.../common/valid/UpdateGro.java | 2 +-
.../common/valid/UpdateStatusGroup.java | 2 +-
.../common/xss/HTMLFilter.java | 2 +-
.../common/xss/SQLFilter.java | 4 +-
.../src/main/resources/generator.properties | 2 +-
.../target/classes/generator.properties | 2 +-
wine/pom.xml | 5 +
.../wine/controller/ArticleController.java | 89 +++++++
.../AttentionCommentController.java | 89 +++++++
.../wine/controller/AttentionController.java | 89 +++++++
.../wine/controller/ComComController.java | 89 +++++++
.../wine/controller/CommentController.java | 89 +++++++
.../game/wine/controller/LabelController.java | 89 +++++++
.../game/wine/controller/UserController.java | 89 +++++++
.../game/wine/controller/WineController.java | 89 +++++++
.../com/wine/game/wine/dao/ArticleDao.java | 17 ++
.../game/wine/dao/AttentionCommentDao.java | 17 ++
.../com/wine/game/wine/dao/AttentionDao.java | 17 ++
.../com/wine/game/wine/dao/ComComDao.java | 17 ++
.../com/wine/game/wine/dao/CommentDao.java | 17 ++
.../java/com/wine/game/wine/dao/LabelDao.java | 17 ++
.../java/com/wine/game/wine/dao/UserDao.java | 17 ++
.../java/com/wine/game/wine/dao/WineDao.java | 17 ++
.../wine/game/wine/entity/ArticleEntity.java | 56 +++++
.../wine/entity/AttentionCommentEntity.java | 48 ++++
.../game/wine/entity/AttentionEntity.java | 48 ++++
.../wine/game/wine/entity/ComComEntity.java | 48 ++++
.../wine/game/wine/entity/CommentEntity.java | 44 ++++
.../wine/game/wine/entity/LabelEntity.java | 40 ++++
.../com/wine/game/wine/entity/UserEntity.java | 72 ++++++
.../com/wine/game/wine/entity/WineEntity.java | 60 +++++
.../game/wine/service/ArticleService.java | 20 ++
.../wine/service/AttentionCommentService.java | 20 ++
.../game/wine/service/AttentionService.java | 20 ++
.../wine/game/wine/service/ComComService.java | 20 ++
.../game/wine/service/CommentService.java | 20 ++
.../wine/game/wine/service/LabelService.java | 20 ++
.../wine/game/wine/service/UserService.java | 20 ++
.../wine/game/wine/service/WineService.java | 20 ++
.../wine/service/impl/ArticleServiceImpl.java | 29 +++
.../impl/AttentionCommentServiceImpl.java | 29 +++
.../service/impl/AttentionServiceImpl.java | 29 +++
.../wine/service/impl/ComComServiceImpl.java | 29 +++
.../wine/service/impl/CommentServiceImpl.java | 29 +++
.../wine/service/impl/LabelServiceImpl.java | 29 +++
.../wine/service/impl/UserServiceImpl.java | 29 +++
.../wine/service/impl/WineServiceImpl.java | 29 +++
.../com/zenofung/wine/WineApplication.java | 13 -
.../main/resources/mapper/ware/ArticleDao.xml | 19 ++
.../mapper/ware/AttentionCommentDao.xml | 17 ++
.../resources/mapper/ware/AttentionDao.xml | 17 ++
.../main/resources/mapper/ware/ComComDao.xml | 17 ++
.../main/resources/mapper/ware/CommentDao.xml | 16 ++
.../main/resources/mapper/ware/LabelDao.xml | 15 ++
.../main/resources/mapper/ware/UserDao.xml | 23 ++
.../main/resources/mapper/ware/WineDao.xml | 20 ++
.../main/resources/mapper/wine/ArticleDao.xml | 19 ++
.../mapper/wine/AttentionCommentDao.xml | 17 ++
.../resources/mapper/wine/AttentionDao.xml | 17 ++
.../main/resources/mapper/wine/ComComDao.xml | 17 ++
.../main/resources/mapper/wine/CommentDao.xml | 16 ++
.../main/resources/mapper/wine/LabelDao.xml | 15 ++
.../main/resources/mapper/wine/UserDao.xml | 23 ++
.../main/resources/mapper/wine/WineDao.xml | 20 ++
.../modules/ware/article-add-or-update.vue | 138 +++++++++++
.../src/views/modules/ware/article.vue | 199 ++++++++++++++++
.../modules/ware/attention-add-or-update.vue | 120 ++++++++++
.../src/views/modules/ware/attention.vue | 187 +++++++++++++++
.../ware/attentioncomment-add-or-update.vue | 120 ++++++++++
.../views/modules/ware/attentioncomment.vue | 187 +++++++++++++++
.../modules/ware/comcom-add-or-update.vue | 120 ++++++++++
.../src/views/modules/ware/comcom.vue | 187 +++++++++++++++
.../modules/ware/comment-add-or-update.vue | 111 +++++++++
.../src/views/modules/ware/comment.vue | 181 ++++++++++++++
.../modules/ware/label-add-or-update.vue | 102 ++++++++
.../src/views/modules/ware/label.vue | 175 ++++++++++++++
.../views/modules/ware/user-add-or-update.vue | 174 ++++++++++++++
.../resources/src/views/modules/ware/user.vue | 223 ++++++++++++++++++
.../views/modules/ware/wine-add-or-update.vue | 147 ++++++++++++
.../resources/src/views/modules/ware/wine.vue | 205 ++++++++++++++++
.../modules/wine/article-add-or-update.vue | 138 +++++++++++
.../src/views/modules/wine/article.vue | 199 ++++++++++++++++
.../modules/wine/attention-add-or-update.vue | 120 ++++++++++
.../src/views/modules/wine/attention.vue | 187 +++++++++++++++
.../wine/attentioncomment-add-or-update.vue | 120 ++++++++++
.../views/modules/wine/attentioncomment.vue | 187 +++++++++++++++
.../modules/wine/comcom-add-or-update.vue | 120 ++++++++++
.../src/views/modules/wine/comcom.vue | 187 +++++++++++++++
.../modules/wine/comment-add-or-update.vue | 111 +++++++++
.../src/views/modules/wine/comment.vue | 181 ++++++++++++++
.../modules/wine/label-add-or-update.vue | 102 ++++++++
.../src/views/modules/wine/label.vue | 175 ++++++++++++++
.../views/modules/wine/user-add-or-update.vue | 174 ++++++++++++++
.../resources/src/views/modules/wine/user.vue | 223 ++++++++++++++++++
.../views/modules/wine/wine-add-or-update.vue | 147 ++++++++++++
.../resources/src/views/modules/wine/wine.vue | 205 ++++++++++++++++
122 files changed, 7135 insertions(+), 50 deletions(-)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/constant/AuthServerConstant.java (88%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/constant/CartConstant.java (86%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/constant/ProductConstant.java (95%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/constant/WareConstant.java (96%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/exception/BizCodeEnum.java (97%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/exception/BizCodeEnume.java (95%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/exception/NotStockException.java (91%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/exception/RRException.java (96%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/to/MemberPrice.java (83%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/to/SkuReductionTO.java (93%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/to/SpuBoundTO.java (90%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/to/es/SkuEsModel.java (98%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/to/es/SkuHasStockVo.java (86%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/to/mq/OrderTo.java (98%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/to/mq/SecKillOrderTo.java (93%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/to/mq/StockDetailTo.java (93%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/to/mq/StockLockedTo.java (87%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/utils/Constant.java (98%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/utils/HttpUtils.java (99%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/utils/PageUtils.java (98%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/utils/Query.java (96%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/utils/R.java (91%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/valid/AddGro.java (86%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/valid/ListValue.java (96%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/valid/ListValueConstraintValidator.java (96%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/valid/UpdateGro.java (86%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/valid/UpdateStatusGroup.java (53%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/xss/HTMLFilter.java (99%)
rename mall-common/src/main/java/com/{fpc => zenofung}/common/xss/SQLFilter.java (93%)
create mode 100644 wine/src/main/java/com/wine/game/wine/controller/ArticleController.java
create mode 100644 wine/src/main/java/com/wine/game/wine/controller/AttentionCommentController.java
create mode 100644 wine/src/main/java/com/wine/game/wine/controller/AttentionController.java
create mode 100644 wine/src/main/java/com/wine/game/wine/controller/ComComController.java
create mode 100644 wine/src/main/java/com/wine/game/wine/controller/CommentController.java
create mode 100644 wine/src/main/java/com/wine/game/wine/controller/LabelController.java
create mode 100644 wine/src/main/java/com/wine/game/wine/controller/UserController.java
create mode 100644 wine/src/main/java/com/wine/game/wine/controller/WineController.java
create mode 100644 wine/src/main/java/com/wine/game/wine/dao/ArticleDao.java
create mode 100644 wine/src/main/java/com/wine/game/wine/dao/AttentionCommentDao.java
create mode 100644 wine/src/main/java/com/wine/game/wine/dao/AttentionDao.java
create mode 100644 wine/src/main/java/com/wine/game/wine/dao/ComComDao.java
create mode 100644 wine/src/main/java/com/wine/game/wine/dao/CommentDao.java
create mode 100644 wine/src/main/java/com/wine/game/wine/dao/LabelDao.java
create mode 100644 wine/src/main/java/com/wine/game/wine/dao/UserDao.java
create mode 100644 wine/src/main/java/com/wine/game/wine/dao/WineDao.java
create mode 100644 wine/src/main/java/com/wine/game/wine/entity/ArticleEntity.java
create mode 100644 wine/src/main/java/com/wine/game/wine/entity/AttentionCommentEntity.java
create mode 100644 wine/src/main/java/com/wine/game/wine/entity/AttentionEntity.java
create mode 100644 wine/src/main/java/com/wine/game/wine/entity/ComComEntity.java
create mode 100644 wine/src/main/java/com/wine/game/wine/entity/CommentEntity.java
create mode 100644 wine/src/main/java/com/wine/game/wine/entity/LabelEntity.java
create mode 100644 wine/src/main/java/com/wine/game/wine/entity/UserEntity.java
create mode 100644 wine/src/main/java/com/wine/game/wine/entity/WineEntity.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/ArticleService.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/AttentionCommentService.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/AttentionService.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/ComComService.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/CommentService.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/LabelService.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/UserService.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/WineService.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/impl/ArticleServiceImpl.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/impl/AttentionCommentServiceImpl.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/impl/AttentionServiceImpl.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/impl/ComComServiceImpl.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/impl/CommentServiceImpl.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/impl/LabelServiceImpl.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/impl/UserServiceImpl.java
create mode 100644 wine/src/main/java/com/wine/game/wine/service/impl/WineServiceImpl.java
delete mode 100644 wine/src/main/java/com/zenofung/wine/WineApplication.java
create mode 100644 wine/src/main/resources/mapper/ware/ArticleDao.xml
create mode 100644 wine/src/main/resources/mapper/ware/AttentionCommentDao.xml
create mode 100644 wine/src/main/resources/mapper/ware/AttentionDao.xml
create mode 100644 wine/src/main/resources/mapper/ware/ComComDao.xml
create mode 100644 wine/src/main/resources/mapper/ware/CommentDao.xml
create mode 100644 wine/src/main/resources/mapper/ware/LabelDao.xml
create mode 100644 wine/src/main/resources/mapper/ware/UserDao.xml
create mode 100644 wine/src/main/resources/mapper/ware/WineDao.xml
create mode 100644 wine/src/main/resources/mapper/wine/ArticleDao.xml
create mode 100644 wine/src/main/resources/mapper/wine/AttentionCommentDao.xml
create mode 100644 wine/src/main/resources/mapper/wine/AttentionDao.xml
create mode 100644 wine/src/main/resources/mapper/wine/ComComDao.xml
create mode 100644 wine/src/main/resources/mapper/wine/CommentDao.xml
create mode 100644 wine/src/main/resources/mapper/wine/LabelDao.xml
create mode 100644 wine/src/main/resources/mapper/wine/UserDao.xml
create mode 100644 wine/src/main/resources/mapper/wine/WineDao.xml
create mode 100644 wine/src/main/resources/src/views/modules/ware/article-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/article.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/attention-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/attention.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/attentioncomment-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/attentioncomment.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/comcom-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/comcom.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/comment-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/comment.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/label-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/label.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/user-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/user.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/wine-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/ware/wine.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/article-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/article.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/attention-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/attention.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/attentioncomment-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/attentioncomment.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/comcom-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/comcom.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/comment-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/comment.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/label-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/label.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/user-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/user.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/wine-add-or-update.vue
create mode 100644 wine/src/main/resources/src/views/modules/wine/wine.vue
diff --git a/mall-common/pom.xml b/mall-common/pom.xml
index 34189eb..482a9ab 100644
--- a/mall-common/pom.xml
+++ b/mall-common/pom.xml
@@ -3,8 +3,8 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- wine_game
com.zenofung
+ wine_game
1.0-SNAPSHOT
4.0.0
diff --git a/mall-common/src/main/java/com/fpc/common/constant/AuthServerConstant.java b/mall-common/src/main/java/com/zenofung/common/constant/AuthServerConstant.java
similarity index 88%
rename from mall-common/src/main/java/com/fpc/common/constant/AuthServerConstant.java
rename to mall-common/src/main/java/com/zenofung/common/constant/AuthServerConstant.java
index 8d66e23..c17bae2 100644
--- a/mall-common/src/main/java/com/fpc/common/constant/AuthServerConstant.java
+++ b/mall-common/src/main/java/com/zenofung/common/constant/AuthServerConstant.java
@@ -1,4 +1,4 @@
-package com.fpc.common.constant;
+package com.zenofung.common.constant;
/**
*
Title: AuthServerConstant
diff --git a/mall-common/src/main/java/com/fpc/common/constant/CartConstant.java b/mall-common/src/main/java/com/zenofung/common/constant/CartConstant.java
similarity index 86%
rename from mall-common/src/main/java/com/fpc/common/constant/CartConstant.java
rename to mall-common/src/main/java/com/zenofung/common/constant/CartConstant.java
index 53a79d4..ca5d463 100644
--- a/mall-common/src/main/java/com/fpc/common/constant/CartConstant.java
+++ b/mall-common/src/main/java/com/zenofung/common/constant/CartConstant.java
@@ -1,4 +1,4 @@
-package com.fpc.common.constant;
+package com.zenofung.common.constant;
/**
* Title: CartConstant
diff --git a/mall-common/src/main/java/com/fpc/common/constant/ProductConstant.java b/mall-common/src/main/java/com/zenofung/common/constant/ProductConstant.java
similarity index 95%
rename from mall-common/src/main/java/com/fpc/common/constant/ProductConstant.java
rename to mall-common/src/main/java/com/zenofung/common/constant/ProductConstant.java
index 3001f74..67ca76f 100644
--- a/mall-common/src/main/java/com/fpc/common/constant/ProductConstant.java
+++ b/mall-common/src/main/java/com/zenofung/common/constant/ProductConstant.java
@@ -1,4 +1,4 @@
-package com.fpc.common.constant;
+package com.zenofung.common.constant;
/**
* Title: ProductConstant
diff --git a/mall-common/src/main/java/com/fpc/common/constant/WareConstant.java b/mall-common/src/main/java/com/zenofung/common/constant/WareConstant.java
similarity index 96%
rename from mall-common/src/main/java/com/fpc/common/constant/WareConstant.java
rename to mall-common/src/main/java/com/zenofung/common/constant/WareConstant.java
index ca14bac..cfb9e9f 100644
--- a/mall-common/src/main/java/com/fpc/common/constant/WareConstant.java
+++ b/mall-common/src/main/java/com/zenofung/common/constant/WareConstant.java
@@ -1,4 +1,4 @@
-package com.fpc.common.constant;
+package com.zenofung.common.constant;
public class WareConstant {
diff --git a/mall-common/src/main/java/com/fpc/common/exception/BizCodeEnum.java b/mall-common/src/main/java/com/zenofung/common/exception/BizCodeEnum.java
similarity index 97%
rename from mall-common/src/main/java/com/fpc/common/exception/BizCodeEnum.java
rename to mall-common/src/main/java/com/zenofung/common/exception/BizCodeEnum.java
index 40cfd39..e0540f6 100644
--- a/mall-common/src/main/java/com/fpc/common/exception/BizCodeEnum.java
+++ b/mall-common/src/main/java/com/zenofung/common/exception/BizCodeEnum.java
@@ -1,4 +1,4 @@
-package com.fpc.common.exception;
+package com.zenofung.common.exception;
/**
* Title: BizCodeEnum
diff --git a/mall-common/src/main/java/com/fpc/common/exception/BizCodeEnume.java b/mall-common/src/main/java/com/zenofung/common/exception/BizCodeEnume.java
similarity index 95%
rename from mall-common/src/main/java/com/fpc/common/exception/BizCodeEnume.java
rename to mall-common/src/main/java/com/zenofung/common/exception/BizCodeEnume.java
index 32342d9..a510669 100644
--- a/mall-common/src/main/java/com/fpc/common/exception/BizCodeEnume.java
+++ b/mall-common/src/main/java/com/zenofung/common/exception/BizCodeEnume.java
@@ -1,4 +1,4 @@
-package com.fpc.common.exception;
+package com.zenofung.common.exception;
import lombok.Getter;
diff --git a/mall-common/src/main/java/com/fpc/common/exception/NotStockException.java b/mall-common/src/main/java/com/zenofung/common/exception/NotStockException.java
similarity index 91%
rename from mall-common/src/main/java/com/fpc/common/exception/NotStockException.java
rename to mall-common/src/main/java/com/zenofung/common/exception/NotStockException.java
index e4a3d33..7f96a61 100644
--- a/mall-common/src/main/java/com/fpc/common/exception/NotStockException.java
+++ b/mall-common/src/main/java/com/zenofung/common/exception/NotStockException.java
@@ -1,4 +1,4 @@
-package com.fpc.common.exception;
+package com.zenofung.common.exception;
/**
* Title: NotStockException
diff --git a/mall-common/src/main/java/com/fpc/common/exception/RRException.java b/mall-common/src/main/java/com/zenofung/common/exception/RRException.java
similarity index 96%
rename from mall-common/src/main/java/com/fpc/common/exception/RRException.java
rename to mall-common/src/main/java/com/zenofung/common/exception/RRException.java
index d899fd8..0c66777 100644
--- a/mall-common/src/main/java/com/fpc/common/exception/RRException.java
+++ b/mall-common/src/main/java/com/zenofung/common/exception/RRException.java
@@ -6,7 +6,7 @@
* 版权所有,侵权必究!
*/
-package com.fpc.common.exception;
+package com.zenofung.common.exception;
/**
* 自定义异常
diff --git a/mall-common/src/main/java/com/fpc/common/to/MemberPrice.java b/mall-common/src/main/java/com/zenofung/common/to/MemberPrice.java
similarity index 83%
rename from mall-common/src/main/java/com/fpc/common/to/MemberPrice.java
rename to mall-common/src/main/java/com/zenofung/common/to/MemberPrice.java
index aeba8ce..93120ff 100644
--- a/mall-common/src/main/java/com/fpc/common/to/MemberPrice.java
+++ b/mall-common/src/main/java/com/zenofung/common/to/MemberPrice.java
@@ -1,4 +1,4 @@
-package com.fpc.common.to;
+package com.zenofung.common.to;
import lombok.Data;
diff --git a/mall-common/src/main/java/com/fpc/common/to/SkuReductionTO.java b/mall-common/src/main/java/com/zenofung/common/to/SkuReductionTO.java
similarity index 93%
rename from mall-common/src/main/java/com/fpc/common/to/SkuReductionTO.java
rename to mall-common/src/main/java/com/zenofung/common/to/SkuReductionTO.java
index 71b217f..7493b2a 100644
--- a/mall-common/src/main/java/com/fpc/common/to/SkuReductionTO.java
+++ b/mall-common/src/main/java/com/zenofung/common/to/SkuReductionTO.java
@@ -1,4 +1,4 @@
-package com.fpc.common.to;
+package com.zenofung.common.to;
import lombok.Data;
diff --git a/mall-common/src/main/java/com/fpc/common/to/SpuBoundTO.java b/mall-common/src/main/java/com/zenofung/common/to/SpuBoundTO.java
similarity index 90%
rename from mall-common/src/main/java/com/fpc/common/to/SpuBoundTO.java
rename to mall-common/src/main/java/com/zenofung/common/to/SpuBoundTO.java
index 343f63a..fbfa5a1 100644
--- a/mall-common/src/main/java/com/fpc/common/to/SpuBoundTO.java
+++ b/mall-common/src/main/java/com/zenofung/common/to/SpuBoundTO.java
@@ -1,4 +1,4 @@
-package com.fpc.common.to;
+package com.zenofung.common.to;
import lombok.Data;
diff --git a/mall-common/src/main/java/com/fpc/common/to/es/SkuEsModel.java b/mall-common/src/main/java/com/zenofung/common/to/es/SkuEsModel.java
similarity index 98%
rename from mall-common/src/main/java/com/fpc/common/to/es/SkuEsModel.java
rename to mall-common/src/main/java/com/zenofung/common/to/es/SkuEsModel.java
index 6649266..a6c0f3c 100644
--- a/mall-common/src/main/java/com/fpc/common/to/es/SkuEsModel.java
+++ b/mall-common/src/main/java/com/zenofung/common/to/es/SkuEsModel.java
@@ -1,4 +1,4 @@
-package com.fpc.common.to.es;
+package com.zenofung.common.to.es;
import lombok.Data;
diff --git a/mall-common/src/main/java/com/fpc/common/to/es/SkuHasStockVo.java b/mall-common/src/main/java/com/zenofung/common/to/es/SkuHasStockVo.java
similarity index 86%
rename from mall-common/src/main/java/com/fpc/common/to/es/SkuHasStockVo.java
rename to mall-common/src/main/java/com/zenofung/common/to/es/SkuHasStockVo.java
index 728a43a..cafa277 100644
--- a/mall-common/src/main/java/com/fpc/common/to/es/SkuHasStockVo.java
+++ b/mall-common/src/main/java/com/zenofung/common/to/es/SkuHasStockVo.java
@@ -1,4 +1,4 @@
-package com.fpc.common.to.es;
+package com.zenofung.common.to.es;
import lombok.Data;
diff --git a/mall-common/src/main/java/com/fpc/common/to/mq/OrderTo.java b/mall-common/src/main/java/com/zenofung/common/to/mq/OrderTo.java
similarity index 98%
rename from mall-common/src/main/java/com/fpc/common/to/mq/OrderTo.java
rename to mall-common/src/main/java/com/zenofung/common/to/mq/OrderTo.java
index c91fe3b..b112a4a 100644
--- a/mall-common/src/main/java/com/fpc/common/to/mq/OrderTo.java
+++ b/mall-common/src/main/java/com/zenofung/common/to/mq/OrderTo.java
@@ -1,4 +1,4 @@
-package com.fpc.common.to.mq;
+package com.zenofung.common.to.mq;
import lombok.Data;
diff --git a/mall-common/src/main/java/com/fpc/common/to/mq/SecKillOrderTo.java b/mall-common/src/main/java/com/zenofung/common/to/mq/SecKillOrderTo.java
similarity index 93%
rename from mall-common/src/main/java/com/fpc/common/to/mq/SecKillOrderTo.java
rename to mall-common/src/main/java/com/zenofung/common/to/mq/SecKillOrderTo.java
index 5606d48..235ccea 100644
--- a/mall-common/src/main/java/com/fpc/common/to/mq/SecKillOrderTo.java
+++ b/mall-common/src/main/java/com/zenofung/common/to/mq/SecKillOrderTo.java
@@ -1,4 +1,4 @@
-package com.fpc.common.to.mq;
+package com.zenofung.common.to.mq;
import lombok.Data;
import java.math.BigDecimal;
diff --git a/mall-common/src/main/java/com/fpc/common/to/mq/StockDetailTo.java b/mall-common/src/main/java/com/zenofung/common/to/mq/StockDetailTo.java
similarity index 93%
rename from mall-common/src/main/java/com/fpc/common/to/mq/StockDetailTo.java
rename to mall-common/src/main/java/com/zenofung/common/to/mq/StockDetailTo.java
index d5ad8c5..6d47256 100644
--- a/mall-common/src/main/java/com/fpc/common/to/mq/StockDetailTo.java
+++ b/mall-common/src/main/java/com/zenofung/common/to/mq/StockDetailTo.java
@@ -1,4 +1,4 @@
-package com.fpc.common.to.mq;
+package com.zenofung.common.to.mq;
import lombok.Data;
diff --git a/mall-common/src/main/java/com/fpc/common/to/mq/StockLockedTo.java b/mall-common/src/main/java/com/zenofung/common/to/mq/StockLockedTo.java
similarity index 87%
rename from mall-common/src/main/java/com/fpc/common/to/mq/StockLockedTo.java
rename to mall-common/src/main/java/com/zenofung/common/to/mq/StockLockedTo.java
index bd85666..584e831 100644
--- a/mall-common/src/main/java/com/fpc/common/to/mq/StockLockedTo.java
+++ b/mall-common/src/main/java/com/zenofung/common/to/mq/StockLockedTo.java
@@ -1,4 +1,4 @@
-package com.fpc.common.to.mq;
+package com.zenofung.common.to.mq;
import lombok.Data;
diff --git a/mall-common/src/main/java/com/fpc/common/utils/Constant.java b/mall-common/src/main/java/com/zenofung/common/utils/Constant.java
similarity index 98%
rename from mall-common/src/main/java/com/fpc/common/utils/Constant.java
rename to mall-common/src/main/java/com/zenofung/common/utils/Constant.java
index ac680a2..665dd53 100644
--- a/mall-common/src/main/java/com/fpc/common/utils/Constant.java
+++ b/mall-common/src/main/java/com/zenofung/common/utils/Constant.java
@@ -6,7 +6,7 @@
* 版权所有,侵权必究!
*/
-package com.fpc.common.utils;
+package com.zenofung.common.utils;
/**
* 常量
diff --git a/mall-common/src/main/java/com/fpc/common/utils/HttpUtils.java b/mall-common/src/main/java/com/zenofung/common/utils/HttpUtils.java
similarity index 99%
rename from mall-common/src/main/java/com/fpc/common/utils/HttpUtils.java
rename to mall-common/src/main/java/com/zenofung/common/utils/HttpUtils.java
index 744a1bd..102aa42 100644
--- a/mall-common/src/main/java/com/fpc/common/utils/HttpUtils.java
+++ b/mall-common/src/main/java/com/zenofung/common/utils/HttpUtils.java
@@ -1,4 +1,4 @@
-package com.fpc.common.utils;
+package com.zenofung.common.utils;
import org.apache.commons.lang.StringUtils;
import org.apache.http.HttpResponse;
diff --git a/mall-common/src/main/java/com/fpc/common/utils/PageUtils.java b/mall-common/src/main/java/com/zenofung/common/utils/PageUtils.java
similarity index 98%
rename from mall-common/src/main/java/com/fpc/common/utils/PageUtils.java
rename to mall-common/src/main/java/com/zenofung/common/utils/PageUtils.java
index d2db22e..f112ca1 100644
--- a/mall-common/src/main/java/com/fpc/common/utils/PageUtils.java
+++ b/mall-common/src/main/java/com/zenofung/common/utils/PageUtils.java
@@ -6,7 +6,7 @@
* 版权所有,侵权必究!
*/
-package com.fpc.common.utils;
+package com.zenofung.common.utils;
import com.baomidou.mybatisplus.core.metadata.IPage;
diff --git a/mall-common/src/main/java/com/fpc/common/utils/Query.java b/mall-common/src/main/java/com/zenofung/common/utils/Query.java
similarity index 96%
rename from mall-common/src/main/java/com/fpc/common/utils/Query.java
rename to mall-common/src/main/java/com/zenofung/common/utils/Query.java
index 6da823e..0db1aca 100644
--- a/mall-common/src/main/java/com/fpc/common/utils/Query.java
+++ b/mall-common/src/main/java/com/zenofung/common/utils/Query.java
@@ -6,7 +6,7 @@
* 版权所有,侵权必究!
*/
-package com.fpc.common.utils;
+package com.zenofung.common.utils;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.metadata.OrderItem;
@@ -14,7 +14,7 @@
import org.apache.commons.lang.StringUtils;
-import com.fpc.common.xss.SQLFilter;
+import com.zenofung.common.xss.SQLFilter;
import java.util.Map;
diff --git a/mall-common/src/main/java/com/fpc/common/utils/R.java b/mall-common/src/main/java/com/zenofung/common/utils/R.java
similarity index 91%
rename from mall-common/src/main/java/com/fpc/common/utils/R.java
rename to mall-common/src/main/java/com/zenofung/common/utils/R.java
index 1ca92bb..1e1a8ce 100644
--- a/mall-common/src/main/java/com/fpc/common/utils/R.java
+++ b/mall-common/src/main/java/com/zenofung/common/utils/R.java
@@ -6,16 +6,13 @@
* 版权所有,侵权必究!
*/
-package com.fpc.common.utils;
+package com.zenofung.common.utils;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.TypeReference;
-import com.fpc.common.to.es.SkuHasStockVo;
import org.apache.http.HttpStatus;
-import org.springframework.beans.PropertyValues;
import java.util.HashMap;
-import java.util.List;
import java.util.Map;
/**
diff --git a/mall-common/src/main/java/com/fpc/common/valid/AddGro.java b/mall-common/src/main/java/com/zenofung/common/valid/AddGro.java
similarity index 86%
rename from mall-common/src/main/java/com/fpc/common/valid/AddGro.java
rename to mall-common/src/main/java/com/zenofung/common/valid/AddGro.java
index d029ee2..6aa993b 100644
--- a/mall-common/src/main/java/com/fpc/common/valid/AddGro.java
+++ b/mall-common/src/main/java/com/zenofung/common/valid/AddGro.java
@@ -1,4 +1,4 @@
-package com.fpc.common.valid;
+package com.zenofung.common.valid;
/**
* @description: ________
diff --git a/mall-common/src/main/java/com/fpc/common/valid/ListValue.java b/mall-common/src/main/java/com/zenofung/common/valid/ListValue.java
similarity index 96%
rename from mall-common/src/main/java/com/fpc/common/valid/ListValue.java
rename to mall-common/src/main/java/com/zenofung/common/valid/ListValue.java
index 361363d..67eab0b 100644
--- a/mall-common/src/main/java/com/fpc/common/valid/ListValue.java
+++ b/mall-common/src/main/java/com/zenofung/common/valid/ListValue.java
@@ -1,4 +1,4 @@
-package com.fpc.common.valid;
+package com.zenofung.common.valid;
import javax.validation.Constraint;
import javax.validation.Payload;
diff --git a/mall-common/src/main/java/com/fpc/common/valid/ListValueConstraintValidator.java b/mall-common/src/main/java/com/zenofung/common/valid/ListValueConstraintValidator.java
similarity index 96%
rename from mall-common/src/main/java/com/fpc/common/valid/ListValueConstraintValidator.java
rename to mall-common/src/main/java/com/zenofung/common/valid/ListValueConstraintValidator.java
index cb926ef..71050e9 100644
--- a/mall-common/src/main/java/com/fpc/common/valid/ListValueConstraintValidator.java
+++ b/mall-common/src/main/java/com/zenofung/common/valid/ListValueConstraintValidator.java
@@ -1,4 +1,4 @@
-package com.fpc.common.valid;
+package com.zenofung.common.valid;
import javax.validation.ConstraintValidator;
import javax.validation.ConstraintValidatorContext;
diff --git a/mall-common/src/main/java/com/fpc/common/valid/UpdateGro.java b/mall-common/src/main/java/com/zenofung/common/valid/UpdateGro.java
similarity index 86%
rename from mall-common/src/main/java/com/fpc/common/valid/UpdateGro.java
rename to mall-common/src/main/java/com/zenofung/common/valid/UpdateGro.java
index ec99c35..6265170 100644
--- a/mall-common/src/main/java/com/fpc/common/valid/UpdateGro.java
+++ b/mall-common/src/main/java/com/zenofung/common/valid/UpdateGro.java
@@ -1,4 +1,4 @@
-package com.fpc.common.valid;
+package com.zenofung.common.valid;
/**
* @description: ________
diff --git a/mall-common/src/main/java/com/fpc/common/valid/UpdateStatusGroup.java b/mall-common/src/main/java/com/zenofung/common/valid/UpdateStatusGroup.java
similarity index 53%
rename from mall-common/src/main/java/com/fpc/common/valid/UpdateStatusGroup.java
rename to mall-common/src/main/java/com/zenofung/common/valid/UpdateStatusGroup.java
index 3f4391e..10cb191 100644
--- a/mall-common/src/main/java/com/fpc/common/valid/UpdateStatusGroup.java
+++ b/mall-common/src/main/java/com/zenofung/common/valid/UpdateStatusGroup.java
@@ -1,4 +1,4 @@
-package com.fpc.common.valid;
+package com.zenofung.common.valid;
public interface UpdateStatusGroup {
}
diff --git a/mall-common/src/main/java/com/fpc/common/xss/HTMLFilter.java b/mall-common/src/main/java/com/zenofung/common/xss/HTMLFilter.java
similarity index 99%
rename from mall-common/src/main/java/com/fpc/common/xss/HTMLFilter.java
rename to mall-common/src/main/java/com/zenofung/common/xss/HTMLFilter.java
index 4d41889..3470cdb 100644
--- a/mall-common/src/main/java/com/fpc/common/xss/HTMLFilter.java
+++ b/mall-common/src/main/java/com/zenofung/common/xss/HTMLFilter.java
@@ -1,4 +1,4 @@
-package com.fpc.common.xss;
+package com.zenofung.common.xss;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
diff --git a/mall-common/src/main/java/com/fpc/common/xss/SQLFilter.java b/mall-common/src/main/java/com/zenofung/common/xss/SQLFilter.java
similarity index 93%
rename from mall-common/src/main/java/com/fpc/common/xss/SQLFilter.java
rename to mall-common/src/main/java/com/zenofung/common/xss/SQLFilter.java
index 70fb365..221f8e9 100644
--- a/mall-common/src/main/java/com/fpc/common/xss/SQLFilter.java
+++ b/mall-common/src/main/java/com/zenofung/common/xss/SQLFilter.java
@@ -6,10 +6,10 @@
* 版权所有,侵权必究!
*/
-package com.fpc.common.xss;
+package com.zenofung.common.xss;
-import com.fpc.common.exception.RRException;
+import com.zenofung.common.exception.RRException;
import org.apache.commons.lang.StringUtils;
/**
diff --git a/renren-generator/src/main/resources/generator.properties b/renren-generator/src/main/resources/generator.properties
index d3a0c7d..511a7d9 100644
--- a/renren-generator/src/main/resources/generator.properties
+++ b/renren-generator/src/main/resources/generator.properties
@@ -2,7 +2,7 @@
mainPath=com.zenofung
#\u5305\u540D
package=com.wine.game
-moduleName=ware
+moduleName=wine
#\u4F5C\u8005
author=zenofung
#Email
diff --git a/renren-generator/target/classes/generator.properties b/renren-generator/target/classes/generator.properties
index d3a0c7d..511a7d9 100644
--- a/renren-generator/target/classes/generator.properties
+++ b/renren-generator/target/classes/generator.properties
@@ -2,7 +2,7 @@
mainPath=com.zenofung
#\u5305\u540D
package=com.wine.game
-moduleName=ware
+moduleName=wine
#\u4F5C\u8005
author=zenofung
#Email
diff --git a/wine/pom.xml b/wine/pom.xml
index 2eee8bd..3612e01 100644
--- a/wine/pom.xml
+++ b/wine/pom.xml
@@ -17,6 +17,11 @@
1.8
+
+ com.zenofung
+ mall-common
+ 1.0-SNAPSHOT
+
org.springframework.boot
spring-boot-starter-web
diff --git a/wine/src/main/java/com/wine/game/wine/controller/ArticleController.java b/wine/src/main/java/com/wine/game/wine/controller/ArticleController.java
new file mode 100644
index 0000000..7991078
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/controller/ArticleController.java
@@ -0,0 +1,89 @@
+package com.wine.game.wine.controller;
+
+import java.util.Arrays;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.wine.game.wine.entity.ArticleEntity;
+import com.wine.game.wine.service.ArticleService;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.R;
+
+
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@RestController
+@RequestMapping("wine/article")
+public class ArticleController {
+ @Autowired
+ private ArticleService articleService;
+
+ /**
+ * 列表
+ */
+ @RequestMapping("/list")
+ //@RequiresPermissions("wine:article:list")
+ public R list(@RequestParam Map params){
+ PageUtils page = articleService.queryPage(params);
+
+ return R.ok().put("page", page);
+ }
+
+
+ /**
+ * 信息
+ */
+ @RequestMapping("/info/{id}")
+ //@RequiresPermissions("wine:article:info")
+ public R info(@PathVariable("id") Integer id){
+ ArticleEntity article = articleService.getById(id);
+
+ return R.ok().put("article", article);
+ }
+
+ /**
+ * 保存
+ */
+ @RequestMapping("/save")
+ //@RequiresPermissions("wine:article:save")
+ public R save(@RequestBody ArticleEntity article){
+ articleService.save(article);
+
+ return R.ok();
+ }
+
+ /**
+ * 修改
+ */
+ @RequestMapping("/update")
+ //@RequiresPermissions("wine:article:update")
+ public R update(@RequestBody ArticleEntity article){
+ articleService.updateById(article);
+
+ return R.ok();
+ }
+
+ /**
+ * 删除
+ */
+ @RequestMapping("/delete")
+ //@RequiresPermissions("${moduleNamez}:article:delete")
+ public R delete(@RequestBody Integer[] ids){
+ articleService.removeByIds(Arrays.asList(ids));
+
+ return R.ok();
+ }
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/controller/AttentionCommentController.java b/wine/src/main/java/com/wine/game/wine/controller/AttentionCommentController.java
new file mode 100644
index 0000000..f6c999c
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/controller/AttentionCommentController.java
@@ -0,0 +1,89 @@
+package com.wine.game.wine.controller;
+
+import java.util.Arrays;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.wine.game.wine.entity.AttentionCommentEntity;
+import com.wine.game.wine.service.AttentionCommentService;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.R;
+
+
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@RestController
+@RequestMapping("wine/attentioncomment")
+public class AttentionCommentController {
+ @Autowired
+ private AttentionCommentService attentionCommentService;
+
+ /**
+ * 列表
+ */
+ @RequestMapping("/list")
+ //@RequiresPermissions("wine:attentioncomment:list")
+ public R list(@RequestParam Map params){
+ PageUtils page = attentionCommentService.queryPage(params);
+
+ return R.ok().put("page", page);
+ }
+
+
+ /**
+ * 信息
+ */
+ @RequestMapping("/info/{id}")
+ //@RequiresPermissions("wine:attentioncomment:info")
+ public R info(@PathVariable("id") Integer id){
+ AttentionCommentEntity attentionComment = attentionCommentService.getById(id);
+
+ return R.ok().put("attentionComment", attentionComment);
+ }
+
+ /**
+ * 保存
+ */
+ @RequestMapping("/save")
+ //@RequiresPermissions("wine:attentioncomment:save")
+ public R save(@RequestBody AttentionCommentEntity attentionComment){
+ attentionCommentService.save(attentionComment);
+
+ return R.ok();
+ }
+
+ /**
+ * 修改
+ */
+ @RequestMapping("/update")
+ //@RequiresPermissions("wine:attentioncomment:update")
+ public R update(@RequestBody AttentionCommentEntity attentionComment){
+ attentionCommentService.updateById(attentionComment);
+
+ return R.ok();
+ }
+
+ /**
+ * 删除
+ */
+ @RequestMapping("/delete")
+ //@RequiresPermissions("${moduleNamez}:attentioncomment:delete")
+ public R delete(@RequestBody Integer[] ids){
+ attentionCommentService.removeByIds(Arrays.asList(ids));
+
+ return R.ok();
+ }
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/controller/AttentionController.java b/wine/src/main/java/com/wine/game/wine/controller/AttentionController.java
new file mode 100644
index 0000000..98ad3c8
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/controller/AttentionController.java
@@ -0,0 +1,89 @@
+package com.wine.game.wine.controller;
+
+import java.util.Arrays;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.wine.game.wine.entity.AttentionEntity;
+import com.wine.game.wine.service.AttentionService;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.R;
+
+
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@RestController
+@RequestMapping("wine/attention")
+public class AttentionController {
+ @Autowired
+ private AttentionService attentionService;
+
+ /**
+ * 列表
+ */
+ @RequestMapping("/list")
+ //@RequiresPermissions("wine:attention:list")
+ public R list(@RequestParam Map params){
+ PageUtils page = attentionService.queryPage(params);
+
+ return R.ok().put("page", page);
+ }
+
+
+ /**
+ * 信息
+ */
+ @RequestMapping("/info/{id}")
+ //@RequiresPermissions("wine:attention:info")
+ public R info(@PathVariable("id") Integer id){
+ AttentionEntity attention = attentionService.getById(id);
+
+ return R.ok().put("attention", attention);
+ }
+
+ /**
+ * 保存
+ */
+ @RequestMapping("/save")
+ //@RequiresPermissions("wine:attention:save")
+ public R save(@RequestBody AttentionEntity attention){
+ attentionService.save(attention);
+
+ return R.ok();
+ }
+
+ /**
+ * 修改
+ */
+ @RequestMapping("/update")
+ //@RequiresPermissions("wine:attention:update")
+ public R update(@RequestBody AttentionEntity attention){
+ attentionService.updateById(attention);
+
+ return R.ok();
+ }
+
+ /**
+ * 删除
+ */
+ @RequestMapping("/delete")
+ //@RequiresPermissions("${moduleNamez}:attention:delete")
+ public R delete(@RequestBody Integer[] ids){
+ attentionService.removeByIds(Arrays.asList(ids));
+
+ return R.ok();
+ }
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/controller/ComComController.java b/wine/src/main/java/com/wine/game/wine/controller/ComComController.java
new file mode 100644
index 0000000..3b1043c
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/controller/ComComController.java
@@ -0,0 +1,89 @@
+package com.wine.game.wine.controller;
+
+import java.util.Arrays;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.wine.game.wine.entity.ComComEntity;
+import com.wine.game.wine.service.ComComService;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.R;
+
+
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@RestController
+@RequestMapping("wine/comcom")
+public class ComComController {
+ @Autowired
+ private ComComService comComService;
+
+ /**
+ * 列表
+ */
+ @RequestMapping("/list")
+ //@RequiresPermissions("wine:comcom:list")
+ public R list(@RequestParam Map params){
+ PageUtils page = comComService.queryPage(params);
+
+ return R.ok().put("page", page);
+ }
+
+
+ /**
+ * 信息
+ */
+ @RequestMapping("/info/{id}")
+ //@RequiresPermissions("wine:comcom:info")
+ public R info(@PathVariable("id") Integer id){
+ ComComEntity comCom = comComService.getById(id);
+
+ return R.ok().put("comCom", comCom);
+ }
+
+ /**
+ * 保存
+ */
+ @RequestMapping("/save")
+ //@RequiresPermissions("wine:comcom:save")
+ public R save(@RequestBody ComComEntity comCom){
+ comComService.save(comCom);
+
+ return R.ok();
+ }
+
+ /**
+ * 修改
+ */
+ @RequestMapping("/update")
+ //@RequiresPermissions("wine:comcom:update")
+ public R update(@RequestBody ComComEntity comCom){
+ comComService.updateById(comCom);
+
+ return R.ok();
+ }
+
+ /**
+ * 删除
+ */
+ @RequestMapping("/delete")
+ //@RequiresPermissions("${moduleNamez}:comcom:delete")
+ public R delete(@RequestBody Integer[] ids){
+ comComService.removeByIds(Arrays.asList(ids));
+
+ return R.ok();
+ }
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/controller/CommentController.java b/wine/src/main/java/com/wine/game/wine/controller/CommentController.java
new file mode 100644
index 0000000..12672c9
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/controller/CommentController.java
@@ -0,0 +1,89 @@
+package com.wine.game.wine.controller;
+
+import java.util.Arrays;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.wine.game.wine.entity.CommentEntity;
+import com.wine.game.wine.service.CommentService;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.R;
+
+
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@RestController
+@RequestMapping("wine/comment")
+public class CommentController {
+ @Autowired
+ private CommentService commentService;
+
+ /**
+ * 列表
+ */
+ @RequestMapping("/list")
+ //@RequiresPermissions("wine:comment:list")
+ public R list(@RequestParam Map params){
+ PageUtils page = commentService.queryPage(params);
+
+ return R.ok().put("page", page);
+ }
+
+
+ /**
+ * 信息
+ */
+ @RequestMapping("/info/{id}")
+ //@RequiresPermissions("wine:comment:info")
+ public R info(@PathVariable("id") Integer id){
+ CommentEntity comment = commentService.getById(id);
+
+ return R.ok().put("comment", comment);
+ }
+
+ /**
+ * 保存
+ */
+ @RequestMapping("/save")
+ //@RequiresPermissions("wine:comment:save")
+ public R save(@RequestBody CommentEntity comment){
+ commentService.save(comment);
+
+ return R.ok();
+ }
+
+ /**
+ * 修改
+ */
+ @RequestMapping("/update")
+ //@RequiresPermissions("wine:comment:update")
+ public R update(@RequestBody CommentEntity comment){
+ commentService.updateById(comment);
+
+ return R.ok();
+ }
+
+ /**
+ * 删除
+ */
+ @RequestMapping("/delete")
+ //@RequiresPermissions("${moduleNamez}:comment:delete")
+ public R delete(@RequestBody Integer[] ids){
+ commentService.removeByIds(Arrays.asList(ids));
+
+ return R.ok();
+ }
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/controller/LabelController.java b/wine/src/main/java/com/wine/game/wine/controller/LabelController.java
new file mode 100644
index 0000000..0eda3de
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/controller/LabelController.java
@@ -0,0 +1,89 @@
+package com.wine.game.wine.controller;
+
+import java.util.Arrays;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.wine.game.wine.entity.LabelEntity;
+import com.wine.game.wine.service.LabelService;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.R;
+
+
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@RestController
+@RequestMapping("wine/label")
+public class LabelController {
+ @Autowired
+ private LabelService labelService;
+
+ /**
+ * 列表
+ */
+ @RequestMapping("/list")
+ //@RequiresPermissions("wine:label:list")
+ public R list(@RequestParam Map params){
+ PageUtils page = labelService.queryPage(params);
+
+ return R.ok().put("page", page);
+ }
+
+
+ /**
+ * 信息
+ */
+ @RequestMapping("/info/{id}")
+ //@RequiresPermissions("wine:label:info")
+ public R info(@PathVariable("id") Integer id){
+ LabelEntity label = labelService.getById(id);
+
+ return R.ok().put("label", label);
+ }
+
+ /**
+ * 保存
+ */
+ @RequestMapping("/save")
+ //@RequiresPermissions("wine:label:save")
+ public R save(@RequestBody LabelEntity label){
+ labelService.save(label);
+
+ return R.ok();
+ }
+
+ /**
+ * 修改
+ */
+ @RequestMapping("/update")
+ //@RequiresPermissions("wine:label:update")
+ public R update(@RequestBody LabelEntity label){
+ labelService.updateById(label);
+
+ return R.ok();
+ }
+
+ /**
+ * 删除
+ */
+ @RequestMapping("/delete")
+ //@RequiresPermissions("${moduleNamez}:label:delete")
+ public R delete(@RequestBody Integer[] ids){
+ labelService.removeByIds(Arrays.asList(ids));
+
+ return R.ok();
+ }
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/controller/UserController.java b/wine/src/main/java/com/wine/game/wine/controller/UserController.java
new file mode 100644
index 0000000..1a0bf96
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/controller/UserController.java
@@ -0,0 +1,89 @@
+package com.wine.game.wine.controller;
+
+import java.util.Arrays;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.wine.game.wine.entity.UserEntity;
+import com.wine.game.wine.service.UserService;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.R;
+
+
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@RestController
+@RequestMapping("wine/user")
+public class UserController {
+ @Autowired
+ private UserService userService;
+
+ /**
+ * 列表
+ */
+ @RequestMapping("/list")
+ //@RequiresPermissions("wine:user:list")
+ public R list(@RequestParam Map params){
+ PageUtils page = userService.queryPage(params);
+
+ return R.ok().put("page", page);
+ }
+
+
+ /**
+ * 信息
+ */
+ @RequestMapping("/info/{id}")
+ //@RequiresPermissions("wine:user:info")
+ public R info(@PathVariable("id") Integer id){
+ UserEntity user = userService.getById(id);
+
+ return R.ok().put("user", user);
+ }
+
+ /**
+ * 保存
+ */
+ @RequestMapping("/save")
+ //@RequiresPermissions("wine:user:save")
+ public R save(@RequestBody UserEntity user){
+ userService.save(user);
+
+ return R.ok();
+ }
+
+ /**
+ * 修改
+ */
+ @RequestMapping("/update")
+ //@RequiresPermissions("wine:user:update")
+ public R update(@RequestBody UserEntity user){
+ userService.updateById(user);
+
+ return R.ok();
+ }
+
+ /**
+ * 删除
+ */
+ @RequestMapping("/delete")
+ //@RequiresPermissions("${moduleNamez}:user:delete")
+ public R delete(@RequestBody Integer[] ids){
+ userService.removeByIds(Arrays.asList(ids));
+
+ return R.ok();
+ }
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/controller/WineController.java b/wine/src/main/java/com/wine/game/wine/controller/WineController.java
new file mode 100644
index 0000000..5385793
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/controller/WineController.java
@@ -0,0 +1,89 @@
+package com.wine.game.wine.controller;
+
+import java.util.Arrays;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.wine.game.wine.entity.WineEntity;
+import com.wine.game.wine.service.WineService;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.R;
+
+
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@RestController
+@RequestMapping("wine/wine")
+public class WineController {
+ @Autowired
+ private WineService wineService;
+
+ /**
+ * 列表
+ */
+ @RequestMapping("/list")
+ //@RequiresPermissions("wine:wine:list")
+ public R list(@RequestParam Map params){
+ PageUtils page = wineService.queryPage(params);
+
+ return R.ok().put("page", page);
+ }
+
+
+ /**
+ * 信息
+ */
+ @RequestMapping("/info/{id}")
+ //@RequiresPermissions("wine:wine:info")
+ public R info(@PathVariable("id") Integer id){
+ WineEntity wine = wineService.getById(id);
+
+ return R.ok().put("wine", wine);
+ }
+
+ /**
+ * 保存
+ */
+ @RequestMapping("/save")
+ //@RequiresPermissions("wine:wine:save")
+ public R save(@RequestBody WineEntity wine){
+ wineService.save(wine);
+
+ return R.ok();
+ }
+
+ /**
+ * 修改
+ */
+ @RequestMapping("/update")
+ //@RequiresPermissions("wine:wine:update")
+ public R update(@RequestBody WineEntity wine){
+ wineService.updateById(wine);
+
+ return R.ok();
+ }
+
+ /**
+ * 删除
+ */
+ @RequestMapping("/delete")
+ //@RequiresPermissions("${moduleNamez}:wine:delete")
+ public R delete(@RequestBody Integer[] ids){
+ wineService.removeByIds(Arrays.asList(ids));
+
+ return R.ok();
+ }
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/dao/ArticleDao.java b/wine/src/main/java/com/wine/game/wine/dao/ArticleDao.java
new file mode 100644
index 0000000..8c32e30
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/dao/ArticleDao.java
@@ -0,0 +1,17 @@
+package com.wine.game.wine.dao;
+
+import com.wine.game.wine.entity.ArticleEntity;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.apache.ibatis.annotations.Mapper;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Mapper
+public interface ArticleDao extends BaseMapper {
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/dao/AttentionCommentDao.java b/wine/src/main/java/com/wine/game/wine/dao/AttentionCommentDao.java
new file mode 100644
index 0000000..68ea4f3
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/dao/AttentionCommentDao.java
@@ -0,0 +1,17 @@
+package com.wine.game.wine.dao;
+
+import com.wine.game.wine.entity.AttentionCommentEntity;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.apache.ibatis.annotations.Mapper;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Mapper
+public interface AttentionCommentDao extends BaseMapper {
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/dao/AttentionDao.java b/wine/src/main/java/com/wine/game/wine/dao/AttentionDao.java
new file mode 100644
index 0000000..26d91f0
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/dao/AttentionDao.java
@@ -0,0 +1,17 @@
+package com.wine.game.wine.dao;
+
+import com.wine.game.wine.entity.AttentionEntity;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.apache.ibatis.annotations.Mapper;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Mapper
+public interface AttentionDao extends BaseMapper {
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/dao/ComComDao.java b/wine/src/main/java/com/wine/game/wine/dao/ComComDao.java
new file mode 100644
index 0000000..227aa9a
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/dao/ComComDao.java
@@ -0,0 +1,17 @@
+package com.wine.game.wine.dao;
+
+import com.wine.game.wine.entity.ComComEntity;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.apache.ibatis.annotations.Mapper;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Mapper
+public interface ComComDao extends BaseMapper {
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/dao/CommentDao.java b/wine/src/main/java/com/wine/game/wine/dao/CommentDao.java
new file mode 100644
index 0000000..ffbf676
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/dao/CommentDao.java
@@ -0,0 +1,17 @@
+package com.wine.game.wine.dao;
+
+import com.wine.game.wine.entity.CommentEntity;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.apache.ibatis.annotations.Mapper;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Mapper
+public interface CommentDao extends BaseMapper {
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/dao/LabelDao.java b/wine/src/main/java/com/wine/game/wine/dao/LabelDao.java
new file mode 100644
index 0000000..18d3e66
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/dao/LabelDao.java
@@ -0,0 +1,17 @@
+package com.wine.game.wine.dao;
+
+import com.wine.game.wine.entity.LabelEntity;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.apache.ibatis.annotations.Mapper;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Mapper
+public interface LabelDao extends BaseMapper {
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/dao/UserDao.java b/wine/src/main/java/com/wine/game/wine/dao/UserDao.java
new file mode 100644
index 0000000..0a9c63a
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/dao/UserDao.java
@@ -0,0 +1,17 @@
+package com.wine.game.wine.dao;
+
+import com.wine.game.wine.entity.UserEntity;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.apache.ibatis.annotations.Mapper;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Mapper
+public interface UserDao extends BaseMapper {
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/dao/WineDao.java b/wine/src/main/java/com/wine/game/wine/dao/WineDao.java
new file mode 100644
index 0000000..d19408f
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/dao/WineDao.java
@@ -0,0 +1,17 @@
+package com.wine.game.wine.dao;
+
+import com.wine.game.wine.entity.WineEntity;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.apache.ibatis.annotations.Mapper;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Mapper
+public interface WineDao extends BaseMapper {
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/entity/ArticleEntity.java b/wine/src/main/java/com/wine/game/wine/entity/ArticleEntity.java
new file mode 100644
index 0000000..d9f5e83
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/entity/ArticleEntity.java
@@ -0,0 +1,56 @@
+package com.wine.game.wine.entity;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.util.Date;
+import lombok.Data;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Data
+@TableName("w_article")
+public class ArticleEntity implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ @TableId
+ private Integer id;
+ /**
+ *
+ */
+ private String content;
+ /**
+ *
+ */
+ private String images;
+ /**
+ *
+ */
+ private String wineUrl;
+ /**
+ *
+ */
+ private Integer praise;
+ /**
+ *
+ */
+ private Integer status;
+ /**
+ *
+ */
+ private Date updateTime;
+ /**
+ *
+ */
+ private Date createTime;
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/entity/AttentionCommentEntity.java b/wine/src/main/java/com/wine/game/wine/entity/AttentionCommentEntity.java
new file mode 100644
index 0000000..dfeccc3
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/entity/AttentionCommentEntity.java
@@ -0,0 +1,48 @@
+package com.wine.game.wine.entity;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.util.Date;
+import lombok.Data;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Data
+@TableName("w_attention_comment")
+public class AttentionCommentEntity implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ @TableId
+ private Integer id;
+ /**
+ *
+ */
+ private Integer articleId;
+ /**
+ *
+ */
+ private Integer commentId;
+ /**
+ *
+ */
+ private Integer status;
+ /**
+ *
+ */
+ private Date updateTime;
+ /**
+ *
+ */
+ private Date createTime;
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/entity/AttentionEntity.java b/wine/src/main/java/com/wine/game/wine/entity/AttentionEntity.java
new file mode 100644
index 0000000..f12bde6
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/entity/AttentionEntity.java
@@ -0,0 +1,48 @@
+package com.wine.game.wine.entity;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.util.Date;
+import lombok.Data;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Data
+@TableName("w_attention")
+public class AttentionEntity implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ @TableId
+ private Integer id;
+ /**
+ *
+ */
+ private Integer meId;
+ /**
+ *
+ */
+ private Integer followerId;
+ /**
+ *
+ */
+ private Integer status;
+ /**
+ *
+ */
+ private Date createTime;
+ /**
+ *
+ */
+ private Date updateTime;
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/entity/ComComEntity.java b/wine/src/main/java/com/wine/game/wine/entity/ComComEntity.java
new file mode 100644
index 0000000..946fea7
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/entity/ComComEntity.java
@@ -0,0 +1,48 @@
+package com.wine.game.wine.entity;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.util.Date;
+import lombok.Data;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Data
+@TableName("w_com_com")
+public class ComComEntity implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ @TableId
+ private Integer id;
+ /**
+ *
+ */
+ private Integer comId;
+ /**
+ *
+ */
+ private Integer comIdTwo;
+ /**
+ *
+ */
+ private Integer status;
+ /**
+ *
+ */
+ private Date updateTime;
+ /**
+ *
+ */
+ private Date createTime;
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/entity/CommentEntity.java b/wine/src/main/java/com/wine/game/wine/entity/CommentEntity.java
new file mode 100644
index 0000000..b15fb56
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/entity/CommentEntity.java
@@ -0,0 +1,44 @@
+package com.wine.game.wine.entity;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.util.Date;
+import lombok.Data;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Data
+@TableName("w_comment")
+public class CommentEntity implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ @TableId
+ private Integer id;
+ /**
+ *
+ */
+ private String content;
+ /**
+ *
+ */
+ private String praise;
+ /**
+ *
+ */
+ private Integer status;
+ /**
+ *
+ */
+ private Date createTime;
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/entity/LabelEntity.java b/wine/src/main/java/com/wine/game/wine/entity/LabelEntity.java
new file mode 100644
index 0000000..a315d50
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/entity/LabelEntity.java
@@ -0,0 +1,40 @@
+package com.wine.game.wine.entity;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.util.Date;
+import lombok.Data;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Data
+@TableName("w_label")
+public class LabelEntity implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ @TableId
+ private Integer id;
+ /**
+ *
+ */
+ private String label;
+ /**
+ *
+ */
+ private Integer status;
+ /**
+ *
+ */
+ private Date createTime;
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/entity/UserEntity.java b/wine/src/main/java/com/wine/game/wine/entity/UserEntity.java
new file mode 100644
index 0000000..4edcf87
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/entity/UserEntity.java
@@ -0,0 +1,72 @@
+package com.wine.game.wine.entity;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.util.Date;
+import lombok.Data;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Data
+@TableName("w_user")
+public class UserEntity implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ @TableId
+ private Integer id;
+ /**
+ *
+ */
+ private String openId;
+ /**
+ *
+ */
+ private String userNikename;
+ /**
+ *
+ */
+ private String userProtrait;
+ /**
+ *
+ */
+ private String userSex;
+ /**
+ *
+ */
+ private String userName;
+ /**
+ *
+ */
+ private String userPhone;
+ /**
+ *
+ */
+ private String userAddress;
+ /**
+ *
+ */
+ private String lastIp;
+ /**
+ *
+ */
+ private Integer status;
+ /**
+ *
+ */
+ private Date updateTime;
+ /**
+ *
+ */
+ private Date createTime;
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/entity/WineEntity.java b/wine/src/main/java/com/wine/game/wine/entity/WineEntity.java
new file mode 100644
index 0000000..6e30964
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/entity/WineEntity.java
@@ -0,0 +1,60 @@
+package com.wine.game.wine.entity;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.util.Date;
+import lombok.Data;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+@Data
+@TableName("w_wine")
+public class WineEntity implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ @TableId
+ private Integer id;
+ /**
+ *
+ */
+ private String unId;
+ /**
+ *
+ */
+ private String subject;
+ /**
+ *
+ */
+ private String time;
+ /**
+ *
+ */
+ private String place;
+ /**
+ *
+ */
+ private Integer pepleNumber;
+ /**
+ *
+ */
+ private Integer status;
+ /**
+ *
+ */
+ private Date updateTime;
+ /**
+ *
+ */
+ private Date createTime;
+
+}
diff --git a/wine/src/main/java/com/wine/game/wine/service/ArticleService.java b/wine/src/main/java/com/wine/game/wine/service/ArticleService.java
new file mode 100644
index 0000000..519c0fc
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/ArticleService.java
@@ -0,0 +1,20 @@
+package com.wine.game.wine.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.zenofung.common.utils.PageUtils;
+import com.wine.game.wine.entity.ArticleEntity;
+
+import java.util.Map;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+public interface ArticleService extends IService {
+
+ PageUtils queryPage(Map params);
+}
+
diff --git a/wine/src/main/java/com/wine/game/wine/service/AttentionCommentService.java b/wine/src/main/java/com/wine/game/wine/service/AttentionCommentService.java
new file mode 100644
index 0000000..a9f85ab
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/AttentionCommentService.java
@@ -0,0 +1,20 @@
+package com.wine.game.wine.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.zenofung.common.utils.PageUtils;
+import com.wine.game.wine.entity.AttentionCommentEntity;
+
+import java.util.Map;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+public interface AttentionCommentService extends IService {
+
+ PageUtils queryPage(Map params);
+}
+
diff --git a/wine/src/main/java/com/wine/game/wine/service/AttentionService.java b/wine/src/main/java/com/wine/game/wine/service/AttentionService.java
new file mode 100644
index 0000000..66953e5
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/AttentionService.java
@@ -0,0 +1,20 @@
+package com.wine.game.wine.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.zenofung.common.utils.PageUtils;
+import com.wine.game.wine.entity.AttentionEntity;
+
+import java.util.Map;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+public interface AttentionService extends IService {
+
+ PageUtils queryPage(Map params);
+}
+
diff --git a/wine/src/main/java/com/wine/game/wine/service/ComComService.java b/wine/src/main/java/com/wine/game/wine/service/ComComService.java
new file mode 100644
index 0000000..d8d1cde
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/ComComService.java
@@ -0,0 +1,20 @@
+package com.wine.game.wine.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.zenofung.common.utils.PageUtils;
+import com.wine.game.wine.entity.ComComEntity;
+
+import java.util.Map;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+public interface ComComService extends IService {
+
+ PageUtils queryPage(Map params);
+}
+
diff --git a/wine/src/main/java/com/wine/game/wine/service/CommentService.java b/wine/src/main/java/com/wine/game/wine/service/CommentService.java
new file mode 100644
index 0000000..7e4e6cf
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/CommentService.java
@@ -0,0 +1,20 @@
+package com.wine.game.wine.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.zenofung.common.utils.PageUtils;
+import com.wine.game.wine.entity.CommentEntity;
+
+import java.util.Map;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+public interface CommentService extends IService {
+
+ PageUtils queryPage(Map params);
+}
+
diff --git a/wine/src/main/java/com/wine/game/wine/service/LabelService.java b/wine/src/main/java/com/wine/game/wine/service/LabelService.java
new file mode 100644
index 0000000..e9aa808
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/LabelService.java
@@ -0,0 +1,20 @@
+package com.wine.game.wine.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.zenofung.common.utils.PageUtils;
+import com.wine.game.wine.entity.LabelEntity;
+
+import java.util.Map;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+public interface LabelService extends IService {
+
+ PageUtils queryPage(Map params);
+}
+
diff --git a/wine/src/main/java/com/wine/game/wine/service/UserService.java b/wine/src/main/java/com/wine/game/wine/service/UserService.java
new file mode 100644
index 0000000..15d5e3a
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/UserService.java
@@ -0,0 +1,20 @@
+package com.wine.game.wine.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.zenofung.common.utils.PageUtils;
+import com.wine.game.wine.entity.UserEntity;
+
+import java.util.Map;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+public interface UserService extends IService {
+
+ PageUtils queryPage(Map params);
+}
+
diff --git a/wine/src/main/java/com/wine/game/wine/service/WineService.java b/wine/src/main/java/com/wine/game/wine/service/WineService.java
new file mode 100644
index 0000000..285bf0f
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/WineService.java
@@ -0,0 +1,20 @@
+package com.wine.game.wine.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.zenofung.common.utils.PageUtils;
+import com.wine.game.wine.entity.WineEntity;
+
+import java.util.Map;
+
+/**
+ *
+ *
+ * @author zenofung
+ * @email zenofung@qq.com
+ * @date 2022-03-08 11:46:32
+ */
+public interface WineService extends IService {
+
+ PageUtils queryPage(Map params);
+}
+
diff --git a/wine/src/main/java/com/wine/game/wine/service/impl/ArticleServiceImpl.java b/wine/src/main/java/com/wine/game/wine/service/impl/ArticleServiceImpl.java
new file mode 100644
index 0000000..d6d9680
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/impl/ArticleServiceImpl.java
@@ -0,0 +1,29 @@
+package com.wine.game.wine.service.impl;
+
+import org.springframework.stereotype.Service;
+import java.util.Map;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.Query;
+
+import com.wine.game.wine.dao.ArticleDao;
+import com.wine.game.wine.entity.ArticleEntity;
+import com.wine.game.wine.service.ArticleService;
+
+
+@Service("articleService")
+public class ArticleServiceImpl extends ServiceImpl implements ArticleService {
+
+ @Override
+ public PageUtils queryPage(Map params) {
+ IPage page = this.page(
+ new Query().getPage(params),
+ new QueryWrapper()
+ );
+
+ return new PageUtils(page);
+ }
+
+}
\ No newline at end of file
diff --git a/wine/src/main/java/com/wine/game/wine/service/impl/AttentionCommentServiceImpl.java b/wine/src/main/java/com/wine/game/wine/service/impl/AttentionCommentServiceImpl.java
new file mode 100644
index 0000000..93a45f7
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/impl/AttentionCommentServiceImpl.java
@@ -0,0 +1,29 @@
+package com.wine.game.wine.service.impl;
+
+import org.springframework.stereotype.Service;
+import java.util.Map;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.Query;
+
+import com.wine.game.wine.dao.AttentionCommentDao;
+import com.wine.game.wine.entity.AttentionCommentEntity;
+import com.wine.game.wine.service.AttentionCommentService;
+
+
+@Service("attentionCommentService")
+public class AttentionCommentServiceImpl extends ServiceImpl implements AttentionCommentService {
+
+ @Override
+ public PageUtils queryPage(Map params) {
+ IPage page = this.page(
+ new Query().getPage(params),
+ new QueryWrapper()
+ );
+
+ return new PageUtils(page);
+ }
+
+}
\ No newline at end of file
diff --git a/wine/src/main/java/com/wine/game/wine/service/impl/AttentionServiceImpl.java b/wine/src/main/java/com/wine/game/wine/service/impl/AttentionServiceImpl.java
new file mode 100644
index 0000000..b71ab74
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/impl/AttentionServiceImpl.java
@@ -0,0 +1,29 @@
+package com.wine.game.wine.service.impl;
+
+import org.springframework.stereotype.Service;
+import java.util.Map;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.Query;
+
+import com.wine.game.wine.dao.AttentionDao;
+import com.wine.game.wine.entity.AttentionEntity;
+import com.wine.game.wine.service.AttentionService;
+
+
+@Service("attentionService")
+public class AttentionServiceImpl extends ServiceImpl implements AttentionService {
+
+ @Override
+ public PageUtils queryPage(Map params) {
+ IPage page = this.page(
+ new Query().getPage(params),
+ new QueryWrapper()
+ );
+
+ return new PageUtils(page);
+ }
+
+}
\ No newline at end of file
diff --git a/wine/src/main/java/com/wine/game/wine/service/impl/ComComServiceImpl.java b/wine/src/main/java/com/wine/game/wine/service/impl/ComComServiceImpl.java
new file mode 100644
index 0000000..677852c
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/impl/ComComServiceImpl.java
@@ -0,0 +1,29 @@
+package com.wine.game.wine.service.impl;
+
+import org.springframework.stereotype.Service;
+import java.util.Map;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.Query;
+
+import com.wine.game.wine.dao.ComComDao;
+import com.wine.game.wine.entity.ComComEntity;
+import com.wine.game.wine.service.ComComService;
+
+
+@Service("comComService")
+public class ComComServiceImpl extends ServiceImpl implements ComComService {
+
+ @Override
+ public PageUtils queryPage(Map params) {
+ IPage page = this.page(
+ new Query().getPage(params),
+ new QueryWrapper()
+ );
+
+ return new PageUtils(page);
+ }
+
+}
\ No newline at end of file
diff --git a/wine/src/main/java/com/wine/game/wine/service/impl/CommentServiceImpl.java b/wine/src/main/java/com/wine/game/wine/service/impl/CommentServiceImpl.java
new file mode 100644
index 0000000..d5d94a2
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/impl/CommentServiceImpl.java
@@ -0,0 +1,29 @@
+package com.wine.game.wine.service.impl;
+
+import org.springframework.stereotype.Service;
+import java.util.Map;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.Query;
+
+import com.wine.game.wine.dao.CommentDao;
+import com.wine.game.wine.entity.CommentEntity;
+import com.wine.game.wine.service.CommentService;
+
+
+@Service("commentService")
+public class CommentServiceImpl extends ServiceImpl implements CommentService {
+
+ @Override
+ public PageUtils queryPage(Map params) {
+ IPage page = this.page(
+ new Query().getPage(params),
+ new QueryWrapper()
+ );
+
+ return new PageUtils(page);
+ }
+
+}
\ No newline at end of file
diff --git a/wine/src/main/java/com/wine/game/wine/service/impl/LabelServiceImpl.java b/wine/src/main/java/com/wine/game/wine/service/impl/LabelServiceImpl.java
new file mode 100644
index 0000000..f2dfcf7
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/impl/LabelServiceImpl.java
@@ -0,0 +1,29 @@
+package com.wine.game.wine.service.impl;
+
+import org.springframework.stereotype.Service;
+import java.util.Map;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.Query;
+
+import com.wine.game.wine.dao.LabelDao;
+import com.wine.game.wine.entity.LabelEntity;
+import com.wine.game.wine.service.LabelService;
+
+
+@Service("labelService")
+public class LabelServiceImpl extends ServiceImpl implements LabelService {
+
+ @Override
+ public PageUtils queryPage(Map params) {
+ IPage page = this.page(
+ new Query().getPage(params),
+ new QueryWrapper()
+ );
+
+ return new PageUtils(page);
+ }
+
+}
\ No newline at end of file
diff --git a/wine/src/main/java/com/wine/game/wine/service/impl/UserServiceImpl.java b/wine/src/main/java/com/wine/game/wine/service/impl/UserServiceImpl.java
new file mode 100644
index 0000000..c39ef51
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/impl/UserServiceImpl.java
@@ -0,0 +1,29 @@
+package com.wine.game.wine.service.impl;
+
+import org.springframework.stereotype.Service;
+import java.util.Map;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.Query;
+
+import com.wine.game.wine.dao.UserDao;
+import com.wine.game.wine.entity.UserEntity;
+import com.wine.game.wine.service.UserService;
+
+
+@Service("userService")
+public class UserServiceImpl extends ServiceImpl implements UserService {
+
+ @Override
+ public PageUtils queryPage(Map params) {
+ IPage page = this.page(
+ new Query().getPage(params),
+ new QueryWrapper()
+ );
+
+ return new PageUtils(page);
+ }
+
+}
\ No newline at end of file
diff --git a/wine/src/main/java/com/wine/game/wine/service/impl/WineServiceImpl.java b/wine/src/main/java/com/wine/game/wine/service/impl/WineServiceImpl.java
new file mode 100644
index 0000000..e97dac9
--- /dev/null
+++ b/wine/src/main/java/com/wine/game/wine/service/impl/WineServiceImpl.java
@@ -0,0 +1,29 @@
+package com.wine.game.wine.service.impl;
+
+import org.springframework.stereotype.Service;
+import java.util.Map;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.zenofung.common.utils.PageUtils;
+import com.zenofung.common.utils.Query;
+
+import com.wine.game.wine.dao.WineDao;
+import com.wine.game.wine.entity.WineEntity;
+import com.wine.game.wine.service.WineService;
+
+
+@Service("wineService")
+public class WineServiceImpl extends ServiceImpl implements WineService {
+
+ @Override
+ public PageUtils queryPage(Map params) {
+ IPage page = this.page(
+ new Query().getPage(params),
+ new QueryWrapper()
+ );
+
+ return new PageUtils(page);
+ }
+
+}
\ No newline at end of file
diff --git a/wine/src/main/java/com/zenofung/wine/WineApplication.java b/wine/src/main/java/com/zenofung/wine/WineApplication.java
deleted file mode 100644
index 360b79b..0000000
--- a/wine/src/main/java/com/zenofung/wine/WineApplication.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.zenofung.wine;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-
-@SpringBootApplication
-public class WineApplication {
-
- public static void main(String[] args) {
- SpringApplication.run(WineApplication.class, args);
- }
-
-}
diff --git a/wine/src/main/resources/mapper/ware/ArticleDao.xml b/wine/src/main/resources/mapper/ware/ArticleDao.xml
new file mode 100644
index 0000000..9fa6b25
--- /dev/null
+++ b/wine/src/main/resources/mapper/ware/ArticleDao.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/ware/AttentionCommentDao.xml b/wine/src/main/resources/mapper/ware/AttentionCommentDao.xml
new file mode 100644
index 0000000..8630d46
--- /dev/null
+++ b/wine/src/main/resources/mapper/ware/AttentionCommentDao.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/ware/AttentionDao.xml b/wine/src/main/resources/mapper/ware/AttentionDao.xml
new file mode 100644
index 0000000..b1920b8
--- /dev/null
+++ b/wine/src/main/resources/mapper/ware/AttentionDao.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/ware/ComComDao.xml b/wine/src/main/resources/mapper/ware/ComComDao.xml
new file mode 100644
index 0000000..d406657
--- /dev/null
+++ b/wine/src/main/resources/mapper/ware/ComComDao.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/ware/CommentDao.xml b/wine/src/main/resources/mapper/ware/CommentDao.xml
new file mode 100644
index 0000000..95edc9d
--- /dev/null
+++ b/wine/src/main/resources/mapper/ware/CommentDao.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/ware/LabelDao.xml b/wine/src/main/resources/mapper/ware/LabelDao.xml
new file mode 100644
index 0000000..01ecaac
--- /dev/null
+++ b/wine/src/main/resources/mapper/ware/LabelDao.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/ware/UserDao.xml b/wine/src/main/resources/mapper/ware/UserDao.xml
new file mode 100644
index 0000000..8280c0d
--- /dev/null
+++ b/wine/src/main/resources/mapper/ware/UserDao.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/ware/WineDao.xml b/wine/src/main/resources/mapper/ware/WineDao.xml
new file mode 100644
index 0000000..d0f1963
--- /dev/null
+++ b/wine/src/main/resources/mapper/ware/WineDao.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/wine/ArticleDao.xml b/wine/src/main/resources/mapper/wine/ArticleDao.xml
new file mode 100644
index 0000000..96774dc
--- /dev/null
+++ b/wine/src/main/resources/mapper/wine/ArticleDao.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/wine/AttentionCommentDao.xml b/wine/src/main/resources/mapper/wine/AttentionCommentDao.xml
new file mode 100644
index 0000000..8458cbb
--- /dev/null
+++ b/wine/src/main/resources/mapper/wine/AttentionCommentDao.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/wine/AttentionDao.xml b/wine/src/main/resources/mapper/wine/AttentionDao.xml
new file mode 100644
index 0000000..a0d2413
--- /dev/null
+++ b/wine/src/main/resources/mapper/wine/AttentionDao.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/wine/ComComDao.xml b/wine/src/main/resources/mapper/wine/ComComDao.xml
new file mode 100644
index 0000000..92977b9
--- /dev/null
+++ b/wine/src/main/resources/mapper/wine/ComComDao.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/wine/CommentDao.xml b/wine/src/main/resources/mapper/wine/CommentDao.xml
new file mode 100644
index 0000000..c0dfea7
--- /dev/null
+++ b/wine/src/main/resources/mapper/wine/CommentDao.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/wine/LabelDao.xml b/wine/src/main/resources/mapper/wine/LabelDao.xml
new file mode 100644
index 0000000..3dc9b89
--- /dev/null
+++ b/wine/src/main/resources/mapper/wine/LabelDao.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/wine/UserDao.xml b/wine/src/main/resources/mapper/wine/UserDao.xml
new file mode 100644
index 0000000..7c7818d
--- /dev/null
+++ b/wine/src/main/resources/mapper/wine/UserDao.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/mapper/wine/WineDao.xml b/wine/src/main/resources/mapper/wine/WineDao.xml
new file mode 100644
index 0000000..6c2254b
--- /dev/null
+++ b/wine/src/main/resources/mapper/wine/WineDao.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wine/src/main/resources/src/views/modules/ware/article-add-or-update.vue b/wine/src/main/resources/src/views/modules/ware/article-add-or-update.vue
new file mode 100644
index 0000000..d781f01
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/article-add-or-update.vue
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/article.vue b/wine/src/main/resources/src/views/modules/ware/article.vue
new file mode 100644
index 0000000..b1d503b
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/article.vue
@@ -0,0 +1,199 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/attention-add-or-update.vue b/wine/src/main/resources/src/views/modules/ware/attention-add-or-update.vue
new file mode 100644
index 0000000..47150b1
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/attention-add-or-update.vue
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/attention.vue b/wine/src/main/resources/src/views/modules/ware/attention.vue
new file mode 100644
index 0000000..704a847
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/attention.vue
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/attentioncomment-add-or-update.vue b/wine/src/main/resources/src/views/modules/ware/attentioncomment-add-or-update.vue
new file mode 100644
index 0000000..41143fb
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/attentioncomment-add-or-update.vue
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/attentioncomment.vue b/wine/src/main/resources/src/views/modules/ware/attentioncomment.vue
new file mode 100644
index 0000000..8fc8daf
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/attentioncomment.vue
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/comcom-add-or-update.vue b/wine/src/main/resources/src/views/modules/ware/comcom-add-or-update.vue
new file mode 100644
index 0000000..7e8a1be
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/comcom-add-or-update.vue
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/comcom.vue b/wine/src/main/resources/src/views/modules/ware/comcom.vue
new file mode 100644
index 0000000..9205265
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/comcom.vue
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/comment-add-or-update.vue b/wine/src/main/resources/src/views/modules/ware/comment-add-or-update.vue
new file mode 100644
index 0000000..5041c3a
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/comment-add-or-update.vue
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/comment.vue b/wine/src/main/resources/src/views/modules/ware/comment.vue
new file mode 100644
index 0000000..f3afdb7
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/comment.vue
@@ -0,0 +1,181 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/label-add-or-update.vue b/wine/src/main/resources/src/views/modules/ware/label-add-or-update.vue
new file mode 100644
index 0000000..26fc799
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/label-add-or-update.vue
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/label.vue b/wine/src/main/resources/src/views/modules/ware/label.vue
new file mode 100644
index 0000000..c3b03c2
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/label.vue
@@ -0,0 +1,175 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/user-add-or-update.vue b/wine/src/main/resources/src/views/modules/ware/user-add-or-update.vue
new file mode 100644
index 0000000..9b6d786
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/user-add-or-update.vue
@@ -0,0 +1,174 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/user.vue b/wine/src/main/resources/src/views/modules/ware/user.vue
new file mode 100644
index 0000000..60c71ad
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/user.vue
@@ -0,0 +1,223 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/wine-add-or-update.vue b/wine/src/main/resources/src/views/modules/ware/wine-add-or-update.vue
new file mode 100644
index 0000000..005f208
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/wine-add-or-update.vue
@@ -0,0 +1,147 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/ware/wine.vue b/wine/src/main/resources/src/views/modules/ware/wine.vue
new file mode 100644
index 0000000..2e5fbaf
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/ware/wine.vue
@@ -0,0 +1,205 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/article-add-or-update.vue b/wine/src/main/resources/src/views/modules/wine/article-add-or-update.vue
new file mode 100644
index 0000000..2200734
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/article-add-or-update.vue
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/article.vue b/wine/src/main/resources/src/views/modules/wine/article.vue
new file mode 100644
index 0000000..0270b05
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/article.vue
@@ -0,0 +1,199 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/attention-add-or-update.vue b/wine/src/main/resources/src/views/modules/wine/attention-add-or-update.vue
new file mode 100644
index 0000000..6f9bf22
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/attention-add-or-update.vue
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/attention.vue b/wine/src/main/resources/src/views/modules/wine/attention.vue
new file mode 100644
index 0000000..394c1cb
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/attention.vue
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/attentioncomment-add-or-update.vue b/wine/src/main/resources/src/views/modules/wine/attentioncomment-add-or-update.vue
new file mode 100644
index 0000000..3050301
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/attentioncomment-add-or-update.vue
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/attentioncomment.vue b/wine/src/main/resources/src/views/modules/wine/attentioncomment.vue
new file mode 100644
index 0000000..0709193
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/attentioncomment.vue
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/comcom-add-or-update.vue b/wine/src/main/resources/src/views/modules/wine/comcom-add-or-update.vue
new file mode 100644
index 0000000..64ad007
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/comcom-add-or-update.vue
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/comcom.vue b/wine/src/main/resources/src/views/modules/wine/comcom.vue
new file mode 100644
index 0000000..b3365fa
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/comcom.vue
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/comment-add-or-update.vue b/wine/src/main/resources/src/views/modules/wine/comment-add-or-update.vue
new file mode 100644
index 0000000..d93fb7b
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/comment-add-or-update.vue
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/comment.vue b/wine/src/main/resources/src/views/modules/wine/comment.vue
new file mode 100644
index 0000000..8511528
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/comment.vue
@@ -0,0 +1,181 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/label-add-or-update.vue b/wine/src/main/resources/src/views/modules/wine/label-add-or-update.vue
new file mode 100644
index 0000000..3e3c17c
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/label-add-or-update.vue
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/label.vue b/wine/src/main/resources/src/views/modules/wine/label.vue
new file mode 100644
index 0000000..854e731
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/label.vue
@@ -0,0 +1,175 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/user-add-or-update.vue b/wine/src/main/resources/src/views/modules/wine/user-add-or-update.vue
new file mode 100644
index 0000000..7f60a45
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/user-add-or-update.vue
@@ -0,0 +1,174 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/user.vue b/wine/src/main/resources/src/views/modules/wine/user.vue
new file mode 100644
index 0000000..a477032
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/user.vue
@@ -0,0 +1,223 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/wine-add-or-update.vue b/wine/src/main/resources/src/views/modules/wine/wine-add-or-update.vue
new file mode 100644
index 0000000..8356514
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/wine-add-or-update.vue
@@ -0,0 +1,147 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wine/src/main/resources/src/views/modules/wine/wine.vue b/wine/src/main/resources/src/views/modules/wine/wine.vue
new file mode 100644
index 0000000..87b59d1
--- /dev/null
+++ b/wine/src/main/resources/src/views/modules/wine/wine.vue
@@ -0,0 +1,205 @@
+
+
+
+
+
+
+
+ 查询
+ 新增
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+