Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
chnmuseum-party
Project
Project
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
liqin
chnmuseum-party
Commits
81b89140
Commit
81b89140
authored
Apr 09, 2021
by
wzp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
5db6f55b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ExhibitionBoardController.java
...useum/party/web/controller/ExhibitionBoardController.java
+2
-2
TUserController.java
...nergy/chnmuseum/party/web/controller/TUserController.java
+1
-1
No files found.
src/main/java/cn/wisenergy/chnmuseum/party/web/controller/ExhibitionBoardController.java
View file @
81b89140
...
@@ -207,8 +207,8 @@ public class ExhibitionBoardController extends BaseController {
...
@@ -207,8 +207,8 @@ public class ExhibitionBoardController extends BaseController {
@ApiImplicitParam
(
name
=
"auditStatus"
,
value
=
"审核状态"
,
paramType
=
"query"
,
dataType
=
"String"
)
@ApiImplicitParam
(
name
=
"auditStatus"
,
value
=
"审核状态"
,
paramType
=
"query"
,
dataType
=
"String"
)
})
})
public
Map
<
String
,
Object
>
getExhibitionBoardList
(
public
Map
<
String
,
Object
>
getExhibitionBoardList
(
@RequestParam
(
value
=
"exhibitionBoardCatIdList"
,
required
=
false
)
List
<
String
>
exhibitionBoardCatIdList
,
@RequestParam
(
value
=
"exhibitionBoardCatIdList
[]
"
,
required
=
false
)
List
<
String
>
exhibitionBoardCatIdList
,
@RequestParam
(
value
=
"boardCopyrightOwnerIdList"
,
required
=
false
)
List
<
String
>
boardCopyrightOwnerIdList
,
@RequestParam
(
value
=
"boardCopyrightOwnerIdList
[]
"
,
required
=
false
)
List
<
String
>
boardCopyrightOwnerIdList
,
@RequestParam
(
value
=
"auditStatus"
,
defaultValue
=
"APPROVED_FINAL"
,
required
=
false
)
AuditStatusEnum
auditStatus
)
{
@RequestParam
(
value
=
"auditStatus"
,
defaultValue
=
"APPROVED_FINAL"
,
required
=
false
)
AuditStatusEnum
auditStatus
)
{
final
LambdaQueryWrapper
<
ExhibitionBoard
>
lambdaQueryWrapper
=
Wrappers
.<
ExhibitionBoard
>
lambdaQuery
().
eq
(
ExhibitionBoard:
:
getAuditStatus
,
auditStatus
.
name
()).
eq
(
ExhibitionBoard:
:
getPublished
,
true
);
final
LambdaQueryWrapper
<
ExhibitionBoard
>
lambdaQueryWrapper
=
Wrappers
.<
ExhibitionBoard
>
lambdaQuery
().
eq
(
ExhibitionBoard:
:
getAuditStatus
,
auditStatus
.
name
()).
eq
(
ExhibitionBoard:
:
getPublished
,
true
);
lambdaQueryWrapper
.
eq
(
ExhibitionBoard:
:
getPublished
,
true
);
lambdaQueryWrapper
.
eq
(
ExhibitionBoard:
:
getPublished
,
true
);
...
...
src/main/java/cn/wisenergy/chnmuseum/party/web/controller/TUserController.java
View file @
81b89140
...
@@ -405,7 +405,7 @@ public class TUserController extends BaseController {
...
@@ -405,7 +405,7 @@ public class TUserController extends BaseController {
entity
.
setId
(
userId
);
entity
.
setId
(
userId
);
entity
.
setUpdateTime
(
DateUtil80
.
getDateTimeOfTimestamp
(
System
.
currentTimeMillis
()));
entity
.
setUpdateTime
(
DateUtil80
.
getDateTimeOfTimestamp
(
System
.
currentTimeMillis
()));
entity
.
setIsDeleted
(
true
);
entity
.
setIsDeleted
(
true
);
boolean
ret1
=
this
.
userService
.
updat
eById
(
entity
);
boolean
ret1
=
this
.
userService
.
remov
eById
(
entity
);
QueryWrapper
<
TUserRole
>
userRoleWrapper
=
new
QueryWrapper
<>();
QueryWrapper
<
TUserRole
>
userRoleWrapper
=
new
QueryWrapper
<>();
userRoleWrapper
.
eq
(
"user_id"
,
userId
);
userRoleWrapper
.
eq
(
"user_id"
,
userId
);
...
...
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