Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
iClear-api
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
tao.mo
2023-04-23 21:55:58 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9decbda38a2940e3e2167aedc0a4ba97010bfec5
9decbda3
1 parent
3ded98aa
API进入D类数据规格型号出现 |null|null问题修复
mt 2023年4月23日21:55:53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
src/main/java/com/erry/iclear/dateInterface/service/ChmConsignmentDetailService.java
src/main/java/com/erry/iclear/dateInterface/service/ChmConsignmentDetailService.java
View file @
9decbda
...
...
@@ -359,15 +359,15 @@ public class ChmConsignmentDetailService {
}
StringBuffer
modelSb
=
new
StringBuffer
();
for
(
int
i
=
0
;
i
<
modelSplits
.
length
;
i
++)
{
//避免多的|
if
(
i
==
modelSplit
.
length
){
break
;
}
String
split
=
modelSplits
[
i
];
if
(
split
==
null
){
split
=
""
;
}
modelSb
.
append
(
split
).
append
(
"|"
);
//避免多的|
if
(
i
==
modelSplit
.
length
){
break
;
}
}
if
(
modelSb
.
length
()
>
0
){
resultModel
=
modelSb
.
toString
();
...
...
Please
register
or
login
to post a comment