Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
youjj
cloud-platform
Commits
a9725f42
Commit
a9725f42
authored
Dec 10, 2020
by
hezhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改接单
parent
852a4c31
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
VehiclePublishFindDTO.java
...xxfc/platform/vehicle/pojo/dto/VehiclePublishFindDTO.java
+4
-0
VehiclePublishVo.java
...a/com/xxfc/platform/vehicle/pojo/vo/VehiclePublishVo.java
+1
-1
VehiclePublishMapper.xml
...server/src/main/resources/mapper/VehiclePublishMapper.xml
+3
-0
No files found.
xx-vehicle/xx-vehicle-api/src/main/java/com/xxfc/platform/vehicle/pojo/dto/VehiclePublishFindDTO.java
View file @
a9725f42
...
...
@@ -50,6 +50,7 @@ public class VehiclePublishFindDTO extends PageParam implements DataInter {
@ApiModelProperty
(
"当前时间"
)
private
Long
nowTime
;
private
String
orderNo
;
...
...
@@ -58,4 +59,7 @@ public class VehiclePublishFindDTO extends PageParam implements DataInter {
List
<
Integer
>
dataCompanyIds
;
Integer
bizType
;
@ApiModelProperty
(
"0-进行中;1-已取消;2-待处理,3-已处理"
)
Integer
status
;
}
xx-vehicle/xx-vehicle-api/src/main/java/com/xxfc/platform/vehicle/pojo/vo/VehiclePublishVo.java
View file @
a9725f42
...
...
@@ -28,7 +28,7 @@ public class VehiclePublishVo extends VehiclePublish {
if
(
status
.
equals
(
1
)
||
status
.
equals
(
3
)){
statusStr
=
"已结束"
;
}
else
if
(
status
.
equals
(
2
)){
statusStr
=
"待收
藏
"
;
statusStr
=
"待收
车
"
;
}
else
if
(
status
.
equals
(
0
)){
if
(
getConfirmNumber
()
!=
null
&&
getConfirmNumber
()
>
0
){
statusStr
=
"已接"
+
getConfirmNumber
()+
"辆"
;
...
...
xx-vehicle/xx-vehicle-server/src/main/resources/mapper/VehiclePublishMapper.xml
View file @
a9725f42
...
...
@@ -20,6 +20,9 @@
<if
test=
"goodsType != null "
>
AND p.`goods_type`= #{goodsType}
</if>
<if
test=
"status != null "
>
AND p.`status`= #{status}
</if>
<if
test=
"nowTime != null and nowTime > 0"
>
AND p.`publish_end_time` >= #{nowTime}
</if>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment