Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit aa92e818
authored
May 19, 2023
by
wangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
数据库表字段变更
1 parent
579ef460
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
project-order/src/main/java/com/alibaba/cloud/integration/order/entity/OrderRequest.java
project-order/src/main/java/com/alibaba/cloud/integration/order/service/impl/OrderServiceListServiceImpl.java
project-order/src/main/java/com/alibaba/cloud/integration/order/entity/OrderRequest.java
View file @
aa92e81
...
@@ -30,7 +30,8 @@ public class OrderRequest {
...
@@ -30,7 +30,8 @@ public class OrderRequest {
private
String
orderTags
;
private
String
orderTags
;
private
String
tags
;
private
String
tags
;
private
String
status
;
private
String
status
;
private
String
statusAppointment
;
private
String
appointmentStatus
;
private
String
appointmentMethod
;
private
String
orgClusterId
;
private
String
orgClusterId
;
private
String
orgClusterName
;
private
String
orgClusterName
;
private
String
orgBranchId
;
private
String
orgBranchId
;
...
...
project-order/src/main/java/com/alibaba/cloud/integration/order/service/impl/OrderServiceListServiceImpl.java
View file @
aa92e81
...
@@ -43,7 +43,7 @@ public class OrderServiceListServiceImpl implements OrderServiceListService {
...
@@ -43,7 +43,7 @@ public class OrderServiceListServiceImpl implements OrderServiceListService {
LambdaQueryWrapper
<
OrderRequest
>
lqw
=
new
LambdaQueryWrapper
<>();
LambdaQueryWrapper
<
OrderRequest
>
lqw
=
new
LambdaQueryWrapper
<>();
lqw
.
ge
(
OrderRequest:
:
getExpectTimeBegin
,
this
.
GetTimestampFromDate
(
startDate
));
//预约开始日期
lqw
.
ge
(
OrderRequest:
:
getExpectTimeBegin
,
this
.
GetTimestampFromDate
(
startDate
));
//预约开始日期
lqw
.
le
(
OrderRequest:
:
getExpectTimeBegin
,
this
.
GetTimestampFromDate
(
endDate
));
//预约结束日期
lqw
.
le
(
OrderRequest:
:
getExpectTimeBegin
,
this
.
GetTimestampFromDate
(
endDate
));
//预约结束日期
lqw
.
eq
(
Strings
.
isNotEmpty
(
appointmentStatus
),
OrderRequest:
:
get
StatusAppointment
,
appointmentStatus
);
//指派状态
lqw
.
eq
(
Strings
.
isNotEmpty
(
appointmentStatus
),
OrderRequest:
:
get
AppointmentStatus
,
appointmentStatus
);
//指派状态
lqw
.
eq
(
Strings
.
isNotEmpty
(
type
),
OrderRequest:
:
getType
,
type
);
//设备类型
lqw
.
eq
(
Strings
.
isNotEmpty
(
type
),
OrderRequest:
:
getType
,
type
);
//设备类型
lqw
.
eq
(
Strings
.
isNotEmpty
(
brand
),
OrderRequest:
:
getBrand
,
brand
);
//品牌
lqw
.
eq
(
Strings
.
isNotEmpty
(
brand
),
OrderRequest:
:
getBrand
,
brand
);
//品牌
lqw
.
eq
(
Strings
.
isNotEmpty
(
skill
),
OrderRequest:
:
getSkill
,
skill
);
//技能
lqw
.
eq
(
Strings
.
isNotEmpty
(
skill
),
OrderRequest:
:
getSkill
,
skill
);
//技能
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment