Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gs1-office-web-sit
Overview
Overview
Details
Activity
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
吴迪
gs1-office-web-sit
Commits
589f3680
Commit
589f3680
authored
May 29, 2023
by
吴迪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改项目请求方式
parent
e74da019
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
PolicyController.java
...io/office/modules/manage/controller/PolicyController.java
+9
-9
No files found.
src/main/java/io/office/modules/manage/controller/PolicyController.java
View file @
589f3680
...
@@ -108,7 +108,7 @@ public class PolicyController extends AbstractController {
...
@@ -108,7 +108,7 @@ public class PolicyController extends AbstractController {
public
R
delete
(
@RequestBody
Integer
[]
ids
)
{
public
R
delete
(
@RequestBody
Integer
[]
ids
)
{
try
{
try
{
if
(
ids
.
length
>
0
)
{
if
(
ids
.
length
>
0
)
{
for
(
Integer
id
:
ids
)
{
for
(
Integer
id
:
ids
)
{
PolicyEntity
policyEntity
=
policyService
.
getById
(
id
);
PolicyEntity
policyEntity
=
policyService
.
getById
(
id
);
// NewsMovieEntity newsMovieEntity = (NewsMovieEntity) policyEntity;
// NewsMovieEntity newsMovieEntity = (NewsMovieEntity) policyEntity;
...
@@ -200,7 +200,7 @@ public class PolicyController extends AbstractController {
...
@@ -200,7 +200,7 @@ public class PolicyController extends AbstractController {
@Login
@Login
@GetMapping
({
"/api/info/{id}"
,
"/api/info/{id}/{token}"
})
@GetMapping
({
"/api/info/{id}"
,
"/api/info/{id}/{token}"
})
// @RequiresPermissions("manage:indexcarouselmanage:pictureImageList")
// @RequiresPermissions("manage:indexcarouselmanage:pictureImageList")
public
R
getDetail
(
@PathVariable
(
"id"
)
Integer
id
,
@PathVariable
(
value
=
"token"
,
required
=
false
)
String
token
)
{
public
R
getDetail
(
@PathVariable
(
"id"
)
Integer
id
,
@PathVariable
(
value
=
"token"
,
required
=
false
)
String
token
)
{
PolicyEntity
policy
=
policyService
.
getById
(
id
);
PolicyEntity
policy
=
policyService
.
getById
(
id
);
...
@@ -220,21 +220,21 @@ public class PolicyController extends AbstractController {
...
@@ -220,21 +220,21 @@ public class PolicyController extends AbstractController {
}
}
tokenCount
.
setCountFlag
(
tokenCount
.
getCountFlag
()
+
1
);
tokenCount
.
setCountFlag
(
tokenCount
.
getCountFlag
()
+
1
);
tokenCountService
.
updateById
(
tokenCount
);
tokenCountService
.
updateById
(
tokenCount
);
}
else
{
}
else
{
if
(
StrUtil
.
equals
(
"0"
,
policy
.
getStatus
()))
{
if
(
StrUtil
.
equals
(
"0"
,
policy
.
getStatus
()))
{
return
R
.
error
(
"没有可显示的内容"
);
return
R
.
error
(
"没有可显示的内容"
);
}
}
//点击量+1
//点击量+1
PolicyEntity
policyUpdate
=
new
PolicyEntity
();
PolicyEntity
policyUpdate
=
new
PolicyEntity
();
if
(
policyUpdate
.
getHits
()!=
null
)
{
if
(
policyUpdate
.
getHits
()
!=
null
)
{
policyUpdate
.
setHits
(
policyUpdate
.
getHits
()
+
1
);
policyUpdate
.
setHits
(
policyUpdate
.
getHits
()
+
1
);
}
else
{
}
else
{
policyUpdate
.
setHits
(
1
);
policyUpdate
.
setHits
(
1
);
}
}
UpdateWrapper
<
PolicyEntity
>
updateWrapper
=
new
UpdateWrapper
();
UpdateWrapper
<
PolicyEntity
>
updateWrapper
=
new
UpdateWrapper
();
updateWrapper
.
eq
(
"id"
,
id
);
updateWrapper
.
eq
(
"id"
,
id
);
policyService
.
update
(
policyUpdate
,
updateWrapper
);
policyService
.
update
(
policyUpdate
,
updateWrapper
);
}
}
...
...
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