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 22:42:58 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7c7e71446d352ed7a359d823d2ea003d262da824
7c7e7144
1 parent
9decbda3
API进入D类数据规格型号出现 |null|null问题修复
mt 2023年4月23日22:42:53
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
5 deletions
src/main/java/com/erry/iclear/dateInterface/service/ChmConsignmentDetailService.java
src/main/java/com/erry/iclear/dateInterface/service/ChmConsignmentDetailService.java
View file @
7c7e714
...
...
@@ -361,13 +361,9 @@ public class ChmConsignmentDetailService {
for
(
int
i
=
0
;
i
<
modelSplits
.
length
;
i
++)
{
String
split
=
modelSplits
[
i
];
if
(
split
==
null
){
split
=
""
;
}
modelSb
.
append
(
split
).
append
(
"|"
);
//避免多的|
if
(
i
==
modelSplit
.
length
){
break
;
}
modelSb
.
append
(
split
).
append
(
"|"
);
}
if
(
modelSb
.
length
()
>
0
){
resultModel
=
modelSb
.
toString
();
...
...
Please
register
or
login
to post a comment