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-11-26 18:58:49 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1758783825be8ff50c111ea1b4116824c4833604
17587838
1 parent
07c67e64
basf
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
src/main/java/com/erry/iclear/dateInterface/api/request/BasfConsignment.java
src/main/java/com/erry/iclear/dateInterface/service/BasfConsignmentService.java
src/main/java/com/erry/iclear/dateInterface/service/DeclearTaskService.java
src/main/java/com/erry/iclear/dateInterface/api/request/BasfConsignment.java
View file @
1758783
...
...
@@ -10,7 +10,7 @@ public class BasfConsignment implements Serializable {
/**
* 运单号
*/
private
String
consignm
n
entCode
;
private
String
consignmentCode
;
/**
* 运单ID
*/
...
...
@@ -49,12 +49,12 @@ public class BasfConsignment implements Serializable {
*/
private
List
<
ConsignmentDetail
>
ConsignmentList
;
public
String
getConsignm
n
entCode
()
{
return
consignm
n
entCode
;
public
String
getConsignmentCode
()
{
return
consignmentCode
;
}
public
void
setConsignm
nentCode
(
String
consignmn
entCode
)
{
this
.
consignm
nentCode
=
consignmn
entCode
;
public
void
setConsignm
entCode
(
String
consignm
entCode
)
{
this
.
consignm
entCode
=
consignm
entCode
;
}
public
Long
getConsignmentId
()
{
...
...
src/main/java/com/erry/iclear/dateInterface/service/BasfConsignmentService.java
View file @
1758783
...
...
@@ -28,7 +28,7 @@ public class BasfConsignmentService {
basfConsignment
=
new
BasfConsignment
();
}
consignmentCode
=
declaredInfo
.
getConsignmentCode
();
basfConsignment
.
setConsignm
n
entCode
(
declaredInfo
.
getConsignmentCode
());
basfConsignment
.
setConsignmentCode
(
declaredInfo
.
getConsignmentCode
());
basfConsignment
.
setConsignmentId
(
declaredInfo
.
getConsignmentId
());
basfConsignment
.
setConsType
(
declaredInfo
.
getConsType
());
basfConsignment
.
setOperateUnitName
(
declaredInfo
.
getOperateUnitName
());
...
...
src/main/java/com/erry/iclear/dateInterface/service/DeclearTaskService.java
View file @
1758783
...
...
@@ -35,7 +35,7 @@ public class DeclearTaskService{
for
(
BasfConsignment
basfConsignment
:
basfConsignments
)
{
DeclearTask
declareTask
=
new
DeclearTask
();
declareTask
.
setChmsignmentId
(
BigDecimal
.
valueOf
(
basfConsignment
.
getConsignmentId
()));
declareTask
.
setChmsignmentCode
(
basfConsignment
.
getConsignm
n
entCode
());
declareTask
.
setChmsignmentCode
(
basfConsignment
.
getConsignmentCode
());
declareTask
.
setOperationTime
(
new
Date
());
declareTask
.
setFileType
(
"1"
);
declareTask
.
setOperationName
(
"root"
);
...
...
Please
register
or
login
to post a comment