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
95c80475
Commit
95c80475
authored
Aug 10, 2019
by
jiaorz
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
6aa8c897
5fe11d9b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
BuyVehicleFormBiz.java
...ain/java/com/xxfc/platform/app/biz/BuyVehicleFormBiz.java
+1
-1
CampsiteShopAdminDTO.java
.../com/xxfc/platform/campsite/dto/CampsiteShopAdminDTO.java
+3
-0
CampsiteShop.java
.../java/com/xxfc/platform/campsite/entity/CampsiteShop.java
+4
-0
BranComanyLeaderVo.java
...com/xxfc/platform/vehicle/pojo/vo/BranComanyLeaderVo.java
+1
-1
No files found.
xx-app/xx-app-server/src/main/java/com/xxfc/platform/app/biz/BuyVehicleFormBiz.java
View file @
95c80475
...
...
@@ -73,7 +73,7 @@ public class BuyVehicleFormBiz extends BaseBiz<BuyVehicleFormMapper, BuyVehicleF
if
(
comanyLeaderVoMap
!=
null
)
{
BranComanyLeaderVo
branComanyLeaderVo
=
comanyLeaderVoMap
.
get
(
buyVehicleForm
.
getCompanyId
());
buyVehicleFormPageVo
.
setLeaderName
(
branComanyLeaderVo
==
null
?
""
:
branComanyLeaderVo
.
getLeader
());
buyVehicleFormPageVo
.
setLeaderPhone
(
branComanyLeaderVo
==
null
?
""
:
branComanyLeaderVo
.
get
Phone
());
buyVehicleFormPageVo
.
setLeaderPhone
(
branComanyLeaderVo
==
null
?
""
:
branComanyLeaderVo
.
get
LeaderContactInfo
());
buyVehicleFormPageVo
.
setCompanyName
(
branComanyLeaderVo
==
null
?
""
:
branComanyLeaderVo
.
getName
());
}
buyVehicleFormPageVoList
.
add
(
buyVehicleFormPageVo
);
...
...
xx-campsite/xx-campsite-api/src/main/java/com/xxfc/platform/campsite/dto/CampsiteShopAdminDTO.java
View file @
95c80475
...
...
@@ -162,4 +162,7 @@ public class CampsiteShopAdminDTO {
*/
private
List
<
Integer
>
campsiteTagDTOS
;
@ApiModelProperty
(
value
=
"海报背景"
)
private
String
posterBackground
;
}
xx-campsite/xx-campsite-api/src/main/java/com/xxfc/platform/campsite/entity/CampsiteShop.java
View file @
95c80475
...
...
@@ -209,4 +209,8 @@ public class CampsiteShop implements Serializable {
@Column
(
name
=
"sale_state"
)
@ApiModelProperty
(
value
=
"上下架状态 0-创建状态 1-上架 2-下架"
)
private
Integer
saleState
;
@Column
(
name
=
"poster_background"
)
@ApiModelProperty
(
value
=
"海报背景"
)
private
String
posterBackground
;
}
xx-vehicle/xx-vehicle-api/src/main/java/com/xxfc/platform/vehicle/pojo/vo/BranComanyLeaderVo.java
View file @
95c80475
...
...
@@ -18,7 +18,7 @@ public class BranComanyLeaderVo {
/**
* 负责人联系电话
*/
private
String
phone
;
private
String
leaderContactInfo
;
/**
* 公司名
...
...
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