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
84b4f9fd
Commit
84b4f9fd
authored
Aug 01, 2023
by
史志龙
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev-szl' into 'dev'
轨道动态几何尺寸容许值差管理值设置默认值 -shizhilong See merge request
!43
parents
9861a138
fb1a777a
Changes
1
Show 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 @
84b4f9fd
...
@@ -1323,18 +1323,24 @@ public class MovementRecordsMasterController extends JeecgController<MovementRec
...
@@ -1323,18 +1323,24 @@ public class MovementRecordsMasterController extends JeecgController<MovementRec
gaugeChange
=
rowRecords
.
get
(
j
).
get
(
98
).
toString
().
trim
();
gaugeChange
=
rowRecords
.
get
(
j
).
get
(
98
).
toString
().
trim
();
if
(
ObjectUtil
.
isNotEmpty
(
gaugeChange
))
{
if
(
ObjectUtil
.
isNotEmpty
(
gaugeChange
))
{
model
.
setGaugeChange
(
gaugeChange
);
model
.
setGaugeChange
(
gaugeChange
);
}
else
{
model
.
setGaugeChange
(
""
);
}
}
//曲率变化率
//曲率变化率
String
curvatureChange
=
""
;
String
curvatureChange
=
""
;
curvatureChange
=
rowRecords
.
get
(
j
).
get
(
111
).
toString
().
trim
();
curvatureChange
=
rowRecords
.
get
(
j
).
get
(
111
).
toString
().
trim
();
if
(
ObjectUtil
.
isNotEmpty
(
curvatureChange
))
{
if
(
ObjectUtil
.
isNotEmpty
(
curvatureChange
))
{
model
.
setCurvatureChange
(
curvatureChange
);
model
.
setCurvatureChange
(
curvatureChange
);
}
else
{
model
.
setCurvatureChange
(
""
);
}
}
//扣分标准
//扣分标准
String
deductStandard
=
""
;
String
deductStandard
=
""
;
deductStandard
=
rowRecords
.
get
(
j
).
get
(
122
).
toString
().
trim
();
deductStandard
=
rowRecords
.
get
(
j
).
get
(
122
).
toString
().
trim
();
if
(
ObjectUtil
.
isNotEmpty
(
deductStandard
))
{
if
(
ObjectUtil
.
isNotEmpty
(
deductStandard
))
{
model
.
setDeductStandard
(
deductStandard
);
model
.
setDeductStandard
(
deductStandard
);
}
else
{
model
.
setDeductStandard
(
""
);
}
}
movementDiferenceManagerList
.
add
(
model
);
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