Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
slm-bi
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
林锐标
slm-bi
Commits
3c8ad24f
Commit
3c8ad24f
authored
Jun 15, 2021
by
梁光意
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加输出参数
parent
1847457a
Pipeline
#9739
passed with stages
in 1 minute 15 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
InstrumentPanelDraftServiceImpl.java
...m/slmbi/service/impl/InstrumentPanelDraftServiceImpl.java
+4
-0
No files found.
src/main/java/com/syc/slm/slmbi/service/impl/InstrumentPanelDraftServiceImpl.java
View file @
3c8ad24f
...
@@ -14,6 +14,7 @@ import com.syc.slm.slmbi.entity.CurrentUser;
...
@@ -14,6 +14,7 @@ import com.syc.slm.slmbi.entity.CurrentUser;
import
com.syc.slm.slmbi.entity.InstrumentPanel
;
import
com.syc.slm.slmbi.entity.InstrumentPanel
;
import
com.syc.slm.slmbi.entity.InstrumentPanelDraft
;
import
com.syc.slm.slmbi.entity.InstrumentPanelDraft
;
import
com.syc.slm.slmbi.service.InstrumentPanelDraftService
;
import
com.syc.slm.slmbi.service.InstrumentPanelDraftService
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
java.util.List
;
import
java.util.List
;
...
@@ -27,6 +28,7 @@ import java.util.stream.Collectors;
...
@@ -27,6 +28,7 @@ import java.util.stream.Collectors;
* @author lin
* @author lin
* @date 2021-04-01 10:52:44
* @date 2021-04-01 10:52:44
*/
*/
@Slf4j
@Service
@Service
public
class
InstrumentPanelDraftServiceImpl
extends
ServiceImpl
<
InstrumentPanelDraftMapper
,
InstrumentPanelDraft
>
public
class
InstrumentPanelDraftServiceImpl
extends
ServiceImpl
<
InstrumentPanelDraftMapper
,
InstrumentPanelDraft
>
implements
InstrumentPanelDraftService
{
implements
InstrumentPanelDraftService
{
...
@@ -64,6 +66,8 @@ public class InstrumentPanelDraftServiceImpl extends ServiceImpl<InstrumentPanel
...
@@ -64,6 +66,8 @@ public class InstrumentPanelDraftServiceImpl extends ServiceImpl<InstrumentPanel
@Override
@Override
public
List
<
InstrumentPanelDraft
>
selectDraftList
(
CurrentUser
currentUser
,
String
appId
,
Set
<
String
>
panelIds
,
String
officeIds
,
String
userId
,
String
roleId
)
{
public
List
<
InstrumentPanelDraft
>
selectDraftList
(
CurrentUser
currentUser
,
String
appId
,
Set
<
String
>
panelIds
,
String
officeIds
,
String
userId
,
String
roleId
)
{
log
.
info
(
"查询树结构当前参数是:user={},appId={},panelIds={}"
,
currentUser
,
appId
,
panelIds
);
log
.
info
(
"查询树结构当前参数是:officeIds={},userId={},roleId={}"
,
officeIds
,
userId
,
roleId
);
if
(
currentUser
.
getAdmin
()){
if
(
currentUser
.
getAdmin
()){
return
baseMapper
.
selectDraftListByAdmin
(
appId
,
panelIds
);
return
baseMapper
.
selectDraftListByAdmin
(
appId
,
panelIds
);
}
else
{
}
else
{
...
...
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