Ec 意向区域回显

This commit is contained in:
苏竹红
2023-09-14 19:22:39 +08:00
parent 3cd74dcddc
commit 0d0c08ead2
9 changed files with 22 additions and 1 deletions

View File

@@ -61,4 +61,6 @@ public class PartnerIntentApplyInfoDTO {
private String userPortrait;
private String ecWantShopArea;
}

View File

@@ -81,4 +81,6 @@ public class PrivateSeaLineDTO {
private String userPortrait;
private String ecWantShopArea;
}

View File

@@ -24,6 +24,8 @@ public class PublicSeaLineDTO {
private String wantShopArea;
private String ecWantShopArea;
private String acceptAdjustType;
private Date updateTime;

View File

@@ -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());

View File

@@ -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());

View File

@@ -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;