Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
H
hzsomms
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
ZTGK
hzsomms
Commits
6b7261e7
Commit
6b7261e7
authored
Oct 23, 2023
by
hkl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:1.bug修复
parent
6aba953e
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
199 additions
and
11 deletions
+199
-11
pom.xml
jeecg-module-system/pom.xml
+5
-4
RailManagementController.java
...ules/deviceAsset/controller/RailManagementController.java
+0
-1
RailManagementMapper.xml
...g/modules/deviceAsset/mapper/xml/RailManagementMapper.xml
+1
-0
RailManagementServiceImpl.java
...s/deviceAsset/service/impl/RailManagementServiceImpl.java
+193
-6
No files found.
jeecg-module-system/pom.xml
View file @
6b7261e7
...
...
@@ -65,6 +65,7 @@
<properties>
<package.environment>
dev
</package.environment>
</properties>
</profile>
<!-- 黄康林本地配置-->
...
...
@@ -73,6 +74,10 @@
<properties>
<package.environment>
hkl
</package.environment>
</properties>
<!-- 是否默认 true表示默认-->
<activation>
<activeByDefault>
true
</activeByDefault>
</activation>
</profile>
<!-- 测试环境 -->
...
...
@@ -81,10 +86,6 @@
<properties>
<package.environment>
test
</package.environment>
</properties>
<!-- 是否默认 true表示默认-->
<activation>
<activeByDefault>
true
</activeByDefault>
</activation>
</profile>
<!-- 压测环境-->
...
...
jeecg-module-system/src/main/java/org/jeecg/modules/deviceAsset/controller/RailManagementController.java
View file @
6b7261e7
...
...
@@ -93,7 +93,6 @@ public class RailManagementController extends JeecgController<RailManagement, IR
@ApiImplicitParam
(
name
=
"lineAliasId"
,
value
=
"线别id"
)
})
public
Result
<
String
>
intelligentGeneration
(
String
lightRailId
,
String
lineAliasId
)
{
// this.service.intelligentGeneration(lightRailId);
this
.
service
.
intelligentGeneration
(
lightRailId
,
lineAliasId
);
return
Result
.
OK
(
"生成成功"
);
}
...
...
jeecg-module-system/src/main/java/org/jeecg/modules/deviceAsset/mapper/xml/RailManagementMapper.xml
View file @
6b7261e7
...
...
@@ -25,6 +25,7 @@
<if
test=
"dto.lineAliasId != null and dto.lineAliasId != ''"
>
AND t1.line_alias_id = #{dto.lineAliasId}
</if>
ORDER BY t1.light_rail_id ,t1.line_alias_id,t1.starting_mileage
</select>
<select
id=
"getLineSpecialRail"
resultType=
"java.util.Map"
>
SELECT id,
...
...
jeecg-module-system/src/main/java/org/jeecg/modules/deviceAsset/service/impl/RailManagementServiceImpl.java
View file @
6b7261e7
This diff is collapsed.
Click to expand it.
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