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-05-24 15:03:28 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
36d4d7d720977eab8fc3048754bf1f9e9714f48a
36d4d7d7
1 parent
dd1276bf
模糊查询hscode接口改为前置模糊
mt 2023年5月24日15:02:16
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/erry/iclear/dateInterface/service/HsCodeService.java
src/main/java/com/erry/iclear/dateInterface/service/HsCodeService.java
View file @
36d4d7d
...
...
@@ -118,7 +118,7 @@ public class HsCodeService {
resultHsCode
.
setMsg
(
ErrorCodeEnum
.
ERROR_30105
.
getName
());
return
resultHsCode
;
}
String
skuCode
=
"%"
+
hscode
.
getSkuCode
()+
"%"
;
String
skuCode
=
hscode
.
getSkuCode
()+
"%"
;
String
skuName
=
"%"
+
hscode
.
getSkuName
()+
"%"
;
//模糊查询hscode信息
List
<
HsCode
>
hsCodeList
=
this
.
hsCodeRepository
.
fuzzyQueryHsCode
(
skuCode
,
skuName
);
...
...
Please
register
or
login
to post a comment