Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gf_back
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tianchao
gf_back
Commits
2ee65554
Commit
2ee65554
authored
Aug 29, 2023
by
ZWT
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(能源管理系统): 基础信息配置
1.开发基础信息配置-输电线路配置模块列表功能,完成接口冒烟测试并生成接口文档; BREAKING CHANGE: 无 Closes 无 [skip ci]
parent
de571930
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
C09-base/pps-core-base/src/main/java/pps/core/base/service/BasePowerLineService.java
...main/java/pps/core/base/service/BasePowerLineService.java
+1
-0
C09-base/pps-core-base/src/main/resources/mybatis/mapper/pps/core/base/BasePowerLineViewMapper.xml
.../mybatis/mapper/pps/core/base/BasePowerLineViewMapper.xml
+2
-0
No files found.
C09-base/pps-core-base/src/main/java/pps/core/base/service/BasePowerLineService.java
View file @
2ee65554
...
@@ -253,6 +253,7 @@ public class BasePowerLineService {
...
@@ -253,6 +253,7 @@ public class BasePowerLineService {
.
eq
(
StringUtils
.
isNotBlank
(
gridTypeKey
),
BasePowerLineEnt:
:
getGridTypeKey
,
gridTypeKey
)
.
eq
(
StringUtils
.
isNotBlank
(
gridTypeKey
),
BasePowerLineEnt:
:
getGridTypeKey
,
gridTypeKey
)
.
eq
(
StringUtils
.
isNotBlank
(
lineTypeKey
),
BasePowerLineEnt:
:
getLineTypeKey
,
lineTypeKey
)
.
eq
(
StringUtils
.
isNotBlank
(
lineTypeKey
),
BasePowerLineEnt:
:
getLineTypeKey
,
lineTypeKey
)
.
eq
(
StringUtils
.
isNotBlank
(
strategyId
),
BasePowerLineEnt:
:
getStrategyId
,
strategyId
)
.
eq
(
StringUtils
.
isNotBlank
(
strategyId
),
BasePowerLineEnt:
:
getStrategyId
,
strategyId
)
.
orderByDesc
(
BaseEnt:
:
getModifyTime
)
);
);
List
<
DynamicQueryBasePowerLineOutput
>
lineOutputList
=
XCopyUtils
.
copyNewList
(
selectList
,
DynamicQueryBasePowerLineOutput
.
class
);
List
<
DynamicQueryBasePowerLineOutput
>
lineOutputList
=
XCopyUtils
.
copyNewList
(
selectList
,
DynamicQueryBasePowerLineOutput
.
class
);
return
XListResult
.
success
(
lineOutputList
);
return
XListResult
.
success
(
lineOutputList
);
...
...
C09-base/pps-core-base/src/main/resources/mybatis/mapper/pps/core/base/BasePowerLineViewMapper.xml
View file @
2ee65554
...
@@ -66,5 +66,7 @@
...
@@ -66,5 +66,7 @@
<if
test=
"lineName != null and lineName != ''"
>
<if
test=
"lineName != null and lineName != ''"
>
AND line_name LIKE CONCAT( '%', #{lineName}, '%' )
AND line_name LIKE CONCAT( '%', #{lineName}, '%' )
</if>
</if>
ORDER BY
modify_time DESC
</select>
</select>
</mapper>
</mapper>
\ No newline at end of file
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