Toggle navigation
Toggle navigation
This project
Loading...
Sign in
YOHOBUY
/
yohobuy-union
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Lixiaodi
7 years ago
Commit
264e753c59c7ef1e7fb05a3103f49009cb5e7c08
1 parent
9c40641b
查询bug 溢出修复
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
server/src/main/java/com/yoho/unions/server/service/impl/UserOrdersServiceImpl.java
server/src/main/java/com/yoho/unions/server/service/impl/UserOrdersServiceImpl.java
View file @
264e753
...
...
@@ -66,7 +66,7 @@ public class UserOrdersServiceImpl implements IUserOrdersService,IBusinessExport
logger
.
info
(
"queryUnionOrders param is {}"
,
reqBO
);
int
beginTime
=
StringUtils
.
isBlank
(
reqBO
.
getBeginTime
())
?
0
:
Integer
.
valueOf
(
reqBO
.
getBeginTime
());
int
endTime
=
StringUtils
.
isBlank
(
reqBO
.
getEndTime
())
?
0
:
Integer
.
valueOf
(
reqBO
.
getEndTime
());
int
orderCode
=
StringUtils
.
isBlank
(
reqBO
.
getOrderCode
())
?
0
:
Integer
.
valueOf
(
reqBO
.
getOrderCode
());
long
orderCode
=
StringUtils
.
isBlank
(
reqBO
.
getOrderCode
())
?
0
:
Long
.
valueOf
(
reqBO
.
getOrderCode
());
String
unionId
=
StringUtils
.
isBlank
(
reqBO
.
getUnionId
())
?
null
:
reqBO
.
getUnionId
();
String
unionType
=
StringUtils
.
isBlank
(
reqBO
.
getUnionType
())
?
null
:
reqBO
.
getUnionType
();
List
<
String
>
idList
=
new
ArrayList
<>();
...
...
Please
register
or
login
to post a comment