Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
youjj
cloud-platform
Commits
cb99998e
Commit
cb99998e
authored
Dec 14, 2020
by
xiaosl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
评论举报
parent
c64119ef
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
7 deletions
+13
-7
ReportComment.java
...m/github/wxiaoqi/security/admin/entity/ReportComment.java
+13
-5
AppReportCommentController.java
...iaoqi/security/admin/rest/AppReportCommentController.java
+0
-2
No files found.
ace-modules/ace-admin-api/src/main/java/com/github/wxiaoqi/security/admin/entity/ReportComment.java
View file @
cb99998e
...
...
@@ -32,7 +32,7 @@ public class ReportComment implements Serializable {
*/
@Column
(
name
=
"comment_id"
)
@ApiModelProperty
(
value
=
""
)
private
Lo
ng
commentId
;
private
Stri
ng
commentId
;
/**
*
...
...
@@ -63,11 +63,19 @@ public class ReportComment implements Serializable {
private
String
picUrl
;
/**
* 状态,1未处理,2已处理
*/
@Column
(
name
=
"status"
)
* 状态,1未处理,2已处理
*/
@Column
(
name
=
"status"
)
@ApiModelProperty
(
value
=
"状态,1未处理,2已处理"
)
private
Integer
status
;
private
Integer
status
;
/**
* 类型,1: 订单商品,2: 活动,3: 达人秀
*/
@Column
(
name
=
"commentType"
)
@ApiModelProperty
(
value
=
"类型,1: 订单商品,2: 活动,3: 达人秀"
)
private
Integer
commentType
;
}
ace-modules/ace-admin/src/main/java/com/github/wxiaoqi/security/admin/rest/AppReportCommentController.java
View file @
cb99998e
...
...
@@ -8,13 +8,11 @@ import com.github.wxiaoqi.security.admin.biz.ReportCommentBiz;
import
com.github.wxiaoqi.security.admin.entity.ReportComment
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiModelProperty
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.util.List
;
@RestController
@RequestMapping
(
"app/reportComment"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment