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
李俊
2023-06-05 14:22:39 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
205681d5783f16be615687b5fafc071326814004
205681d5
1 parent
e083901d
HS CODE查询和获取接口(全量和模糊),新增第一,第二法定计量单位代码
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
src/main/java/com/erry/iclear/dateInterface/entity/HsCode.java
src/main/java/com/erry/iclear/dateInterface/entity/HsCode.java
View file @
205681d
...
...
@@ -129,10 +129,20 @@ public class HsCode extends BaseModel {
private
String
unitLegalFirst
;
/**
* 第一(法定)计量单位编码
*/
@Column
(
name
=
"UNIT_LEGAL_FIRST_CODE"
)
private
String
unitLegalFirstCode
;
/**
* 第二计量单位
*/
@Column
(
name
=
"UNIT_LEGAL_SECOND"
)
private
String
unitLegalSecond
;
/**
* 第二计量单位编码
*/
@Column
(
name
=
"UNIT_LEGAL_SECOND_CODE"
)
private
String
unitLegalSecondCode
;
/**
* CCC标记
...
...
@@ -567,4 +577,5 @@ public class HsCode extends BaseModel {
", outRate="
+
outRate
+
'}'
;
}
}
...
...
Please
register
or
login
to post a comment