Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
8
8timerapiv200
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
8timerv2
8timerapiv200
Commits
b75abcfa
Commit
b75abcfa
authored
Jun 28, 2022
by
284718418@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
模块信息表,添加排序字段
parent
a30a7bb9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
src/main/java/cn/timer/api/bean/qyxx/CmsContentModular.java
+3
-0
src/main/java/cn/timer/api/controller/qyxx/CmsController.java
+13
-3
No files found.
src/main/java/cn/timer/api/bean/qyxx/CmsContentModular.java
View file @
b75abcfa
...
@@ -54,4 +54,7 @@ public class CmsContentModular extends Model<CmsContentModular> {
...
@@ -54,4 +54,7 @@ public class CmsContentModular extends Model<CmsContentModular> {
@ApiModelProperty
(
value
=
"0- 开启 1-关闭"
,
example
=
"0"
)
@ApiModelProperty
(
value
=
"0- 开启 1-关闭"
,
example
=
"0"
)
private
Integer
isOpen
;
private
Integer
isOpen
;
@ApiModelProperty
(
value
=
"排序"
,
example
=
"0"
)
private
Integer
sort
;
}
}
src/main/java/cn/timer/api/controller/qyxx/CmsController.java
View file @
b75abcfa
...
@@ -95,7 +95,10 @@ public class CmsController {
...
@@ -95,7 +95,10 @@ public class CmsController {
MPJQueryWrapper
<
CmsContent
>
queryWrapper
=
new
MPJQueryWrapper
<>();
MPJQueryWrapper
<
CmsContent
>
queryWrapper
=
new
MPJQueryWrapper
<>();
queryWrapper
.
select
(
"t.id"
,
"t.title"
,
"t.author"
,
"t.releasetime"
,
"t.fmtpath"
)
queryWrapper
.
select
(
"t.id"
,
"t.title"
,
"t.author"
,
"t.releasetime"
,
"t.fmtpath"
)
.
leftJoin
(
"cms_content_read ccr on t.id = ccr.cms_content_id"
);
.
leftJoin
(
"cms_content_read ccr on t.id = ccr.cms_content_id"
);
queryWrapper
.
eq
(
"t.releasestate"
,
0
).
and
(!
StringUtils
.
isEmpty
(
userBean
.
getEmpNum
()),
wq
->
wq
.
eq
(
"t.open_status"
,
1
).
or
(
true
,
q
->
q
.
eq
(
"t.open_status"
,
0
).
eq
(
"ccr.user_id"
,
userBean
.
getEmpNum
())))
queryWrapper
.
eq
(
"t.releasestate"
,
0
)
.
and
(!
StringUtils
.
isEmpty
(
userBean
.
getEmpNum
()),
wq
->
wq
.
eq
(
"t.open_status"
,
1
)
.
or
(
true
,
q
->
q
.
eq
(
"t.open_status"
,
0
).
eq
(
"ccr.user_id"
,
userBean
.
getEmpNum
()))
.
or
(
true
,
q
->
q
.
eq
(
"t.open_status"
,
0
).
eq
(
"t.userid"
,
userBean
.
getEmpNum
())))
.
eq
(
"t.organization_id"
,
orgCode
)
.
eq
(
"t.organization_id"
,
orgCode
)
.
groupBy
(
"t.id"
)
.
groupBy
(
"t.id"
)
.
orderByDesc
(
"t.releasetime"
).
last
(
"limit 6"
);
.
orderByDesc
(
"t.releasetime"
).
last
(
"limit 6"
);
...
@@ -155,7 +158,10 @@ public class CmsController {
...
@@ -155,7 +158,10 @@ public class CmsController {
MPJQueryWrapper
<
CmsContent
>
queryWrapper
=
new
MPJQueryWrapper
<>();
MPJQueryWrapper
<
CmsContent
>
queryWrapper
=
new
MPJQueryWrapper
<>();
queryWrapper
.
select
(
"t.id"
,
"t.modularid"
,
"t.title"
,
"t.author"
,
"t.releasetime"
)
queryWrapper
.
select
(
"t.id"
,
"t.modularid"
,
"t.title"
,
"t.author"
,
"t.releasetime"
)
.
leftJoin
(
"cms_content_read ccr on t.id = ccr.cms_content_id"
);
.
leftJoin
(
"cms_content_read ccr on t.id = ccr.cms_content_id"
);
queryWrapper
.
eq
(
"t.releasestate"
,
0
).
and
(!
StringUtils
.
isEmpty
(
userBean
.
getEmpNum
()),
wq
->
wq
.
eq
(
"t.open_status"
,
1
).
or
(
true
,
q
->
q
.
eq
(
"t.open_status"
,
0
).
eq
(
"ccr.user_id"
,
userBean
.
getEmpNum
())))
queryWrapper
.
eq
(
"t.releasestate"
,
0
)
.
and
(!
StringUtils
.
isEmpty
(
userBean
.
getEmpNum
()),
wq
->
wq
.
eq
(
"t.open_status"
,
1
)
.
or
(
true
,
q
->
q
.
eq
(
"t.open_status"
,
0
).
eq
(
"ccr.user_id"
,
userBean
.
getEmpNum
()))
.
or
(
true
,
q
->
q
.
eq
(
"t.open_status"
,
0
).
eq
(
"t.userid"
,
userBean
.
getEmpNum
())))
.
eq
(
"t.organization_id"
,
userBean
.
getOrgCode
()).
eq
(
"t.modularid"
,
id
)
.
eq
(
"t.organization_id"
,
userBean
.
getOrgCode
()).
eq
(
"t.modularid"
,
id
)
.
groupBy
(
"t.id"
)
.
groupBy
(
"t.id"
)
.
orderByDesc
(
"t.releasetime"
)
.
orderByDesc
(
"t.releasetime"
)
...
@@ -175,7 +181,8 @@ public class CmsController {
...
@@ -175,7 +181,8 @@ public class CmsController {
public
Result
<
Object
>
getxxfl
(
@CurrentUser
UserBean
userBean
)
{
public
Result
<
Object
>
getxxfl
(
@CurrentUser
UserBean
userBean
)
{
return
ResultUtil
.
data
(
CmsContentModular
.
builder
().
build
().
selectList
(
new
QueryWrapper
<
CmsContentModular
>()
return
ResultUtil
.
data
(
CmsContentModular
.
builder
().
build
().
selectList
(
new
QueryWrapper
<
CmsContentModular
>()
// .eq("organization_id", userBean.getOrgCode())
// .eq("organization_id", userBean.getOrgCode())
.
eq
(
"is_open"
,
0
)),
"查询分类成功!"
);
.
eq
(
"is_open"
,
0
)
.
orderByAsc
(
"sort"
)),
"查询分类成功!"
);
}
}
/**
/**
...
@@ -197,6 +204,9 @@ public class CmsController {
...
@@ -197,6 +204,9 @@ public class CmsController {
// qynr.setXxbh("XX" + i++);
// qynr.setXxbh("XX" + i++);
Boolean
a
=
qynr
.
getId
()
==
null
;
Boolean
a
=
qynr
.
getId
()
==
null
;
if
(
a
){
qynr
.
setUserid
(
empNum
);
}
if
(
a
&&
qynr
.
getPublisher
()
==
null
)
if
(
a
&&
qynr
.
getPublisher
()
==
null
)
qynr
.
setPublisher
(
empNum
);
qynr
.
setPublisher
(
empNum
);
qynr
.
setOrganizationId
(
orgCode
);
qynr
.
setOrganizationId
(
orgCode
);
...
...
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