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
b2456d17
Commit
b2456d17
authored
Oct 28, 2020
by
hezhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
123
parent
3ea1b53c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
Vehicle.java
...c/main/java/com/xxfc/platform/vehicle/entity/Vehicle.java
+4
-0
VehicleApplyBiz.java
...n/java/com/xxfc/platform/vehicle/biz/VehicleApplyBiz.java
+7
-0
No files found.
xx-vehicle/xx-vehicle-api/src/main/java/com/xxfc/platform/vehicle/entity/Vehicle.java
View file @
b2456d17
...
@@ -325,4 +325,8 @@ public class Vehicle {
...
@@ -325,4 +325,8 @@ public class Vehicle {
@ApiModelProperty
(
"扩展信息list"
)
@ApiModelProperty
(
"扩展信息list"
)
private
String
extensionList
;
private
String
extensionList
;
@Transient
@ApiModelProperty
(
"申请id"
)
private
Integer
vehicleApplyId
;
}
}
\ No newline at end of file
xx-vehicle/xx-vehicle-server/src/main/java/com/xxfc/platform/vehicle/biz/VehicleApplyBiz.java
View file @
b2456d17
...
@@ -69,6 +69,13 @@ public class VehicleApplyBiz extends BaseBiz<VehicleApplyMapper, VehicleApply>{
...
@@ -69,6 +69,13 @@ public class VehicleApplyBiz extends BaseBiz<VehicleApplyMapper, VehicleApply>{
vehicleApply
.
setVehicleId
(
vehicleId
);
vehicleApply
.
setVehicleId
(
vehicleId
);
vehicleApply
.
setId
(
null
);
vehicleApply
.
setId
(
null
);
insertSelective
(
vehicleApply
);
insertSelective
(
vehicleApply
);
Integer
vehicleApplyId
=
vehicle
.
getVehicleApplyId
()
==
null
?
0
:
vehicle
.
getVehicleApplyId
();
if
(
vehicleApplyId
>
0
){
VehicleApply
vehicleApply1
=
new
VehicleApply
();
vehicleApply1
.
setId
(
vehicleApplyId
);
vehicleApply1
.
setIsDel
(
1
);
updateSelectiveById
(
vehicleApply1
);
}
return
vehicleApply
;
return
vehicleApply
;
}
}
...
...
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