Commit 95c80475 authored by jiaorz's avatar jiaorz

Merge remote-tracking branch 'origin/dev' into dev

parents 6aa8c897 5fe11d9b
...@@ -73,7 +73,7 @@ public class BuyVehicleFormBiz extends BaseBiz<BuyVehicleFormMapper, BuyVehicleF ...@@ -73,7 +73,7 @@ public class BuyVehicleFormBiz extends BaseBiz<BuyVehicleFormMapper, BuyVehicleF
if(comanyLeaderVoMap!=null) { if(comanyLeaderVoMap!=null) {
BranComanyLeaderVo branComanyLeaderVo = comanyLeaderVoMap.get(buyVehicleForm.getCompanyId()); BranComanyLeaderVo branComanyLeaderVo = comanyLeaderVoMap.get(buyVehicleForm.getCompanyId());
buyVehicleFormPageVo.setLeaderName(branComanyLeaderVo == null ? "" : branComanyLeaderVo.getLeader()); buyVehicleFormPageVo.setLeaderName(branComanyLeaderVo == null ? "" : branComanyLeaderVo.getLeader());
buyVehicleFormPageVo.setLeaderPhone(branComanyLeaderVo == null ? "" : branComanyLeaderVo.getPhone()); buyVehicleFormPageVo.setLeaderPhone(branComanyLeaderVo == null ? "" : branComanyLeaderVo.getLeaderContactInfo());
buyVehicleFormPageVo.setCompanyName(branComanyLeaderVo == null ? "" : branComanyLeaderVo.getName()); buyVehicleFormPageVo.setCompanyName(branComanyLeaderVo == null ? "" : branComanyLeaderVo.getName());
} }
buyVehicleFormPageVoList.add(buyVehicleFormPageVo); buyVehicleFormPageVoList.add(buyVehicleFormPageVo);
......
...@@ -162,4 +162,7 @@ public class CampsiteShopAdminDTO { ...@@ -162,4 +162,7 @@ public class CampsiteShopAdminDTO {
*/ */
private List<Integer> campsiteTagDTOS; private List<Integer> campsiteTagDTOS;
@ApiModelProperty(value = "海报背景")
private String posterBackground;
} }
...@@ -209,4 +209,8 @@ public class CampsiteShop implements Serializable { ...@@ -209,4 +209,8 @@ public class CampsiteShop implements Serializable {
@Column(name = "sale_state") @Column(name = "sale_state")
@ApiModelProperty(value = "上下架状态 0-创建状态 1-上架 2-下架") @ApiModelProperty(value = "上下架状态 0-创建状态 1-上架 2-下架")
private Integer saleState; private Integer saleState;
@Column(name = "poster_background")
@ApiModelProperty(value = "海报背景")
private String posterBackground;
} }
...@@ -18,7 +18,7 @@ public class BranComanyLeaderVo { ...@@ -18,7 +18,7 @@ public class BranComanyLeaderVo {
/** /**
* 负责人联系电话 * 负责人联系电话
*/ */
private String phone; private String leaderContactInfo;
/** /**
* 公司名 * 公司名
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment