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:02:12 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3ded98aa6fb3ffc9a0b21efb92d6cb4f273f834e
3ded98aa
1 parent
63834c9d
API进入D类数据规格型号出现 |null|null问题修复
mt 2023年4月23日21:02:07
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
src/main/java/com/erry/iclear/dateInterface/service/ChmConsignmentDetailService.java
src/main/java/com/erry/iclear/dateInterface/service/ChmConsignmentDetailService.java
View file @
3ded98a
...
...
@@ -358,7 +358,12 @@ public class ChmConsignmentDetailService {
}
}
StringBuffer
modelSb
=
new
StringBuffer
();
for
(
String
split
:
modelSplits
)
{
for
(
int
i
=
0
;
i
<
modelSplits
.
length
;
i
++)
{
//避免多的|
if
(
i
==
modelSplit
.
length
){
break
;
}
String
split
=
modelSplits
[
i
];
if
(
split
==
null
){
split
=
""
;
}
...
...
Please
register
or
login
to post a comment