inleft
2022-08-04 eaf26c265f8882b2e100428d942ac377330cc114
commit | author | age
88f419 1 /*
I 2 Copyright [2020] [https://www.xiaonuo.vip]
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8   http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
17
18 1.请不要删除和修改根目录下的LICENSE文件。
19 2.请不要删除和修改Snowy源码头部的版权声明。
20 3.请保留源码和相关描述文件的项目出处,作者声明等。
21 4.分发源码时候,请注明软件出处 https://gitee.com/xiaonuobase/snowy
22 5.在修改包名,模块名称,项目代码等时,请注明软件出处 https://gitee.com/xiaonuobase/snowy
23 6.若您的项目无法满足以上几点,可申请商业授权,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
24  */
25 package vip.xiaonuo.modular.blogarticlecomment.controller;
26
27 import vip.xiaonuo.core.annotion.BusinessLog;
28 import vip.xiaonuo.core.annotion.Permission;
29 import vip.xiaonuo.core.enums.LogAnnotionOpTypeEnum;
30 import vip.xiaonuo.core.pojo.response.ResponseData;
31 import vip.xiaonuo.core.pojo.response.SuccessResponseData;
32 import vip.xiaonuo.modular.blogarticlecomment.param.BlogArticleCommentParam;
33 import vip.xiaonuo.modular.blogarticlecomment.service.BlogArticleCommentService;
34 import org.springframework.web.bind.annotation.RestController;
35 import org.springframework.validation.annotation.Validated;
36 import org.springframework.web.bind.annotation.GetMapping;
37 import org.springframework.web.bind.annotation.PostMapping;
38 import org.springframework.web.bind.annotation.RequestBody;
39 import javax.annotation.Resource;
40 import java.util.List;
41
42 /**
43  * 文章评论控制器
44  *
45  * @author inleft
46  * @date 2022-03-01 14:00:53
47  */
48 @RestController
49 public class BlogArticleCommentController {
50
51     @Resource
52     private BlogArticleCommentService blogArticleCommentService;
53
54     /**
55      * 查询文章评论
56      *
57      * @author inleft
58      * @date 2022-03-01 14:00:53
59      */
60     @Permission
61     @GetMapping("/blogArticleComment/page")
62     @BusinessLog(title = "文章评论_查询", opType = LogAnnotionOpTypeEnum.QUERY)
63     public ResponseData page(BlogArticleCommentParam blogArticleCommentParam) {
64         return new SuccessResponseData(blogArticleCommentService.page(blogArticleCommentParam));
65     }
66
67     /**
68      * 添加文章评论
69      *
70      * @author inleft
71      * @date 2022-03-01 14:00:53
72      */
73     @Permission
74     @PostMapping("/blogArticleComment/add")
75     @BusinessLog(title = "文章评论_增加", opType = LogAnnotionOpTypeEnum.ADD)
76     public ResponseData add(@RequestBody @Validated(BlogArticleCommentParam.add.class) BlogArticleCommentParam blogArticleCommentParam) {
77             blogArticleCommentService.add(blogArticleCommentParam);
78         return new SuccessResponseData();
79     }
80
81     /**
82      * 删除文章评论,可批量删除
83      *
84      * @author inleft
85      * @date 2022-03-01 14:00:53
86      */
87     @Permission
88     @PostMapping("/blogArticleComment/delete")
89     @BusinessLog(title = "文章评论_删除", opType = LogAnnotionOpTypeEnum.DELETE)
90     public ResponseData delete(@RequestBody @Validated(BlogArticleCommentParam.delete.class) List<BlogArticleCommentParam> blogArticleCommentParamList) {
91             blogArticleCommentService.delete(blogArticleCommentParamList);
92         return new SuccessResponseData();
93     }
94
95     /**
96      * 编辑文章评论
97      *
98      * @author inleft
99      * @date 2022-03-01 14:00:53
100      */
101     @Permission
102     @PostMapping("/blogArticleComment/edit")
103     @BusinessLog(title = "文章评论_编辑", opType = LogAnnotionOpTypeEnum.EDIT)
104     public ResponseData edit(@RequestBody @Validated(BlogArticleCommentParam.edit.class) BlogArticleCommentParam blogArticleCommentParam) {
105             blogArticleCommentService.edit(blogArticleCommentParam);
106         return new SuccessResponseData();
107     }
108
109     /**
110      * 查看文章评论
111      *
112      * @author inleft
113      * @date 2022-03-01 14:00:53
114      */
115     @Permission
116     @GetMapping("/blogArticleComment/detail")
117     @BusinessLog(title = "文章评论_查看", opType = LogAnnotionOpTypeEnum.DETAIL)
118     public ResponseData detail(@Validated(BlogArticleCommentParam.detail.class) BlogArticleCommentParam blogArticleCommentParam) {
119         return new SuccessResponseData(blogArticleCommentService.detail(blogArticleCommentParam));
120     }
121
122     /**
123      * 文章评论列表
124      *
125      * @author inleft
126      * @date 2022-03-01 14:00:53
127      */
128     @Permission
129     @GetMapping("/blogArticleComment/list")
130     @BusinessLog(title = "文章评论_列表", opType = LogAnnotionOpTypeEnum.QUERY)
131     public ResponseData list(BlogArticleCommentParam blogArticleCommentParam) {
132         return new SuccessResponseData(blogArticleCommentService.list(blogArticleCommentParam));
133     }
134
135     /**
136      * 导出系统用户
137      *
138      * @author inleft
139      * @date 2022-03-01 14:00:53
140      */
141     @Permission
142     @GetMapping("/blogArticleComment/export")
143     @BusinessLog(title = "文章评论_导出", opType = LogAnnotionOpTypeEnum.EXPORT)
144     public void export(BlogArticleCommentParam blogArticleCommentParam) {
145         blogArticleCommentService.export(blogArticleCommentParam);
146     }
147
148 }