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
dc52a44c
Commit
dc52a44c
authored
Aug 01, 2023
by
hkl
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev-hkl
parents
b213ca98
84b4f9fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
MovementRecordsMasterController.java
...CheckData/controller/MovementRecordsMasterController.java
+6
-0
No files found.
jeecg-module-system/src/main/java/org/jeecg/modules/checkData/equipmentCheckData/controller/MovementRecordsMasterController.java
View file @
dc52a44c
...
...
@@ -1323,18 +1323,24 @@ public class MovementRecordsMasterController extends JeecgController<MovementRec
gaugeChange
=
rowRecords
.
get
(
j
).
get
(
98
).
toString
().
trim
();
if
(
ObjectUtil
.
isNotEmpty
(
gaugeChange
))
{
model
.
setGaugeChange
(
gaugeChange
);
}
else
{
model
.
setGaugeChange
(
""
);
}
//曲率变化率
String
curvatureChange
=
""
;
curvatureChange
=
rowRecords
.
get
(
j
).
get
(
111
).
toString
().
trim
();
if
(
ObjectUtil
.
isNotEmpty
(
curvatureChange
))
{
model
.
setCurvatureChange
(
curvatureChange
);
}
else
{
model
.
setCurvatureChange
(
""
);
}
//扣分标准
String
deductStandard
=
""
;
deductStandard
=
rowRecords
.
get
(
j
).
get
(
122
).
toString
().
trim
();
if
(
ObjectUtil
.
isNotEmpty
(
deductStandard
))
{
model
.
setDeductStandard
(
deductStandard
);
}
else
{
model
.
setDeductStandard
(
""
);
}
movementDiferenceManagerList
.
add
(
model
);
}
...
...
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