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
Jiaqi.xu
2021-07-05 15:55:00 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e4457a3777a1fb2e624ce3bbc547a9e4aeaf949e
e4457a37
1 parent
83bc1293
添加申报口岸TSN
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
src/main/java/com/erry/iclear/dateInterface/entity/ChmConsignment.java
src/main/java/com/erry/iclear/dateInterface/service/ChmConsignmentService.java
src/main/java/com/erry/iclear/dateInterface/entity/ChmConsignment.java
View file @
e4457a3
...
...
@@ -51,6 +51,12 @@ public class ChmConsignment implements Serializable {
@Column
(
name
=
"DECLARED_UNIT_NAME"
)
private
String
declaredUnitName
;
/**
* 申报口岸
*/
@Column
(
name
=
"DECLARED_PORT"
)
private
String
declaredPort
;
/**
* 合同协议号
...
...
src/main/java/com/erry/iclear/dateInterface/service/ChmConsignmentService.java
View file @
e4457a3
...
...
@@ -231,6 +231,9 @@ public class ChmConsignmentService {
if
(!
Objects
.
equals
(
transferWaybillStatusDictionaryEntries
,
null
)){
result
.
setConsStatusDic
(
transferWaybillStatusDictionaryEntries
);
result
.
setConsStatus
(
transferWaybillStatusDictionaryEntries
.
getChineseName
());
//申报口岸 固定值:天津口岸TSN
result
.
setDeclaredPort
(
"TSN"
);
}
//推送时间作为创建时间,可以用来校验数据的有序性,如果新的推送时间小于已有的创建时间,就不更新数据
...
...
Please
register
or
login
to post a comment