Ec 意向区域回显
This commit is contained in:
@@ -290,6 +290,7 @@
|
||||
hpuinfo.user_channel_id as userChannelId,
|
||||
hpuinfo.live_area as liveArea,
|
||||
hpuinfo.want_shop_area as wantShopArea,
|
||||
hpuinfo.ec_want_shop_area as ecWantShopArea,
|
||||
hpuinfo.accept_adjust_type as acceptAdjustType,
|
||||
cr.create_time as lastFollowTime,
|
||||
cr.call_status as callStatus
|
||||
|
||||
@@ -474,6 +474,7 @@
|
||||
b.user_channel_id as userChannelId,
|
||||
b.username as userName,
|
||||
b.want_shop_area as wantShopArea,
|
||||
b.ec_want_shop_area as EcWantShopArea,
|
||||
b.accept_adjust_type as acceptAdjustType,
|
||||
bi.user_portrait as userPortrait,
|
||||
hpl.phone_address as phoneAddress
|
||||
@@ -520,6 +521,7 @@
|
||||
hpli.update_time as updateTime,
|
||||
hpuinfo.user_channel_id as userChannelId,
|
||||
hpuinfo.want_shop_area as wantShopArea,
|
||||
hpuinfo.ec_want_shop_area as ecWantShopArea,
|
||||
hpuinfo.accept_adjust_type as acceptAdjustType,
|
||||
hpuinfo.username as partnerUserName,
|
||||
hpuinfo.mobile as partnerUserPhone,
|
||||
|
||||
@@ -61,4 +61,6 @@ public class PartnerIntentApplyInfoDTO {
|
||||
|
||||
private String userPortrait;
|
||||
|
||||
private String ecWantShopArea;
|
||||
|
||||
}
|
||||
|
||||
@@ -81,4 +81,6 @@ public class PrivateSeaLineDTO {
|
||||
|
||||
private String userPortrait;
|
||||
|
||||
private String ecWantShopArea;
|
||||
|
||||
}
|
||||
|
||||
@@ -24,6 +24,8 @@ public class PublicSeaLineDTO {
|
||||
|
||||
private String wantShopArea;
|
||||
|
||||
private String ecWantShopArea;
|
||||
|
||||
private String acceptAdjustType;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
@@ -50,6 +50,9 @@ public class PartnerIntentApplyInfoVO {
|
||||
@ApiModelProperty("意向开店区域")
|
||||
private String wantShopArea;
|
||||
|
||||
@ApiModelProperty("EC意向开店区域")
|
||||
private String ecWantShopArea;
|
||||
|
||||
@ApiModelProperty("意向开店区域")
|
||||
private String wantShopAreaName;
|
||||
|
||||
@@ -92,6 +95,7 @@ public class PartnerIntentApplyInfoVO {
|
||||
partnerIntentApplyInfoVO.setAcceptAdjustType(partnerIntentApplyInfoDTO.getAcceptAdjustType());
|
||||
partnerIntentApplyInfoVO.setLiveArea(partnerIntentApplyInfoDTO.getLiveArea());
|
||||
partnerIntentApplyInfoVO.setWantShopArea(partnerIntentApplyInfoDTO.getWantShopArea());
|
||||
partnerIntentApplyInfoVO.setEcWantShopArea(partnerIntentApplyInfoDTO.getEcWantShopArea());
|
||||
String deadLine = DateUtil.format(partnerIntentApplyInfoDTO.getDeadline(), CoolDateUtils.DATE_FORMAT_SEC_2);
|
||||
partnerIntentApplyInfoVO.setDeadline(deadLine);
|
||||
partnerIntentApplyInfoVO.setPartnerUserName(partnerIntentApplyInfoDTO.getPartnerUserName());
|
||||
|
||||
@@ -66,6 +66,9 @@ public class PrivateSeaLineListVo {
|
||||
@ApiModelProperty("意向开店区域名称")
|
||||
private String wantShopAreaName;
|
||||
|
||||
@ApiModelProperty("EC意向开店区域")
|
||||
private String ecWantShopArea;
|
||||
|
||||
@ApiModelProperty("0不接受调剂、1全国调剂、2省内调剂、3市内调剂")
|
||||
private Integer acceptAdjustType;
|
||||
|
||||
@@ -126,6 +129,7 @@ public class PrivateSeaLineListVo {
|
||||
privateSeaLineListVo.setUpdateTime(updateTime);
|
||||
privateSeaLineListVo.setRecommendPartnerId(x.getRecommendPartnerId());
|
||||
privateSeaLineListVo.setRecommendPartnerMobile(x.getRecommendPartnerId());
|
||||
privateSeaLineListVo.setEcWantShopArea(x.getEcWantShopArea());
|
||||
privateSeaLineListVo.setWantShopArea(x.getWantShopArea());
|
||||
privateSeaLineListVo.setWantShopAreaName(wantShopAreaNameMap.get(x.getWantShopArea()));
|
||||
privateSeaLineListVo.setInvestmentManager(x.getInvestmentManager());
|
||||
|
||||
@@ -65,9 +65,12 @@ public class PublicSeaLineListVo {
|
||||
@ApiModelProperty("意向开店区域ID")
|
||||
private String wantShopArea;
|
||||
|
||||
@ApiModelProperty("意向开店区域ID")
|
||||
@ApiModelProperty("意向开店区域名称")
|
||||
private String wantShopAreaName;
|
||||
|
||||
@ApiModelProperty("EC意向开店区域")
|
||||
private String ecWantShopArea;
|
||||
|
||||
private String acceptAdjustType;
|
||||
|
||||
private String updateTime;
|
||||
|
||||
@@ -595,6 +595,7 @@ public class HyPartnerLineInfoServiceImpl implements HyPartnerLineInfoService {
|
||||
}
|
||||
publicSeaLineListVo.setPhoneAddress(phoneAddress);
|
||||
publicSeaLineListVo.setWantShopArea(x.getWantShopArea());
|
||||
publicSeaLineListVo.setEcWantShopArea(x.getEcWantShopArea());
|
||||
publicSeaLineListVo.setUpdateTime(DateUtil.format(x.getUpdateTime(),CoolDateUtils.DATE_FORMAT_SEC_2));
|
||||
publicSeaLineListVo.setId(x.getLineId());
|
||||
publicSeaLineListVo.setAcceptAdjustType(x.getAcceptAdjustType());
|
||||
|
||||
Reference in New Issue
Block a user