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
李俊
2022-07-28 11:22:52 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5728f8854f7ca14eee4b8e1de92872534b561b15
5728f885
1 parent
7777b5ba
新增(BASF系统调用)校验接口
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
6 deletions
doc/FedEx在线申报系统API - 数据落地接口(C类).docx
src/main/java/com/erry/iclear/dateInterface/api/FedexDataInterface.java
src/main/java/com/erry/iclear/dateInterface/entity/TIClearApiCheckLog.java
src/main/java/com/erry/iclear/dateInterface/task/IClearApiTask.java
src/main/resources/application-dev.yml
doc/FedEx在线申报系统API - 数据落地接口(C类).docx
View file @
5728f88
No preview for this file type
src/main/java/com/erry/iclear/dateInterface/api/FedexDataInterface.java
View file @
5728f88
...
...
@@ -87,10 +87,10 @@ public class FedexDataInterface {
tIclearApiCheckLog
.
setConsignmentCode
(
fedexc
.
getConsignmentCode
());
tIclearApiCheckLog
.
setCreateTime
(
new
Date
());
tIclearApiCheckLog
.
setRequestText
(
new
String
(
"appId:"
+
appId
+
","
+
new
String
(
"
requestHeader[
appId:"
+
appId
+
","
+
"appKey:"
+
appKey
+
","
+
"timeStamp:"
+
timeStamp
+
","
+
"token:"
+
token
)
+
","
"token:"
+
token
)
+
"
]
,"
+
fedexc
.
toString
()
);
TIClearApiCheckLog
tiClearApiCheckLogSave
=
iClearApiCheckLogRepository
.
save
(
tIclearApiCheckLog
);
...
...
src/main/java/com/erry/iclear/dateInterface/entity/TIClearApiCheckLog.java
View file @
5728f88
...
...
@@ -9,6 +9,8 @@ import java.util.Date;
/**
* BASF校验接口日志表
*
* sql/BASF校验接口.sql
*/
@Entity
@Table
(
name
=
"T_ICLEAR_API_CHECK_LOG"
)
...
...
@@ -16,7 +18,7 @@ import java.util.Date;
public
class
TIClearApiCheckLog
extends
BaseModel
{
@Id
@GeneratedValue
@GeneratedValue
(
strategy
=
GenerationType
.
IDENTITY
)
@Column
(
name
=
"ID"
)
private
Long
id
;
...
...
src/main/java/com/erry/iclear/dateInterface/task/IClearApiTask.java
View file @
5728f88
...
...
@@ -14,7 +14,7 @@ import org.springframework.stereotype.Component;
/**
* @author Administrator
*/
@Component
//
@Component
@Slf4j
public
class
IClearApiTask
{
@Autowired
...
...
src/main/resources/application-dev.yml
View file @
5728f88
spring
:
datasource
:
url
:
jdbc:sqlserver://40.73.78.157:1433;DatabaseName=IClear
Uat
url
:
jdbc:sqlserver://40.73.78.157:1433;DatabaseName=IClear
Dev
username
:
sa
password
:
Fedex_123
driver-class-name
:
com.microsoft.sqlserver.jdbc.SQLServerDriver
...
...
@@ -38,4 +38,4 @@ api:
#传输海关回执地址
customs-url
:
https://apiuat.iclrccd-fedex.com/export/outbound/customs
#推送完整报文地址
complete-msg-url
:
https://apiuat.iclrccd-fedex.com/export/outbound/mawb
\ No newline at end of file
complete-msg-url
:
https://apiuat.iclrccd-fedex.com/export/outbound/mawb
...
...
Please
register
or
login
to post a comment