fix
This commit is contained in:
@@ -22,8 +22,8 @@ public class BuildInformationRequest {
|
||||
|
||||
@NotBlank(message = "点餐小程序店铺名称不能为空")
|
||||
@ApiModelProperty(value = "点餐小程序店铺名称")
|
||||
@JsonProperty("cShopName")
|
||||
private String cShopName;
|
||||
@JsonProperty("miniProgramsShopName")
|
||||
private String miniProgramsShopName;
|
||||
|
||||
@NotNull
|
||||
private Long shopId;
|
||||
@@ -202,7 +202,7 @@ public class BuildInformationRequest {
|
||||
buildInformationDO.setAuthorizationUrl(this.authorizationUrl);
|
||||
buildInformationDO.setRelationshipProve(this.relationshipProve);
|
||||
buildInformationDO.setAccountOpeningPermit(this.accountOpeningPermit);
|
||||
buildInformationDO.setCShopName(this.cShopName);
|
||||
buildInformationDO.setCShopName(this.miniProgramsShopName);
|
||||
return buildInformationDO;
|
||||
}
|
||||
|
||||
|
||||
@@ -111,6 +111,13 @@ public class BuildInformationResponse {
|
||||
@ApiModelProperty("公司结算需要:开户许可证")
|
||||
private String accountOpeningPermit;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "收件人")
|
||||
private String addresseeName;
|
||||
|
||||
@ApiModelProperty(value = "手机号" )
|
||||
private String addresseeMobile;
|
||||
|
||||
@ApiModelProperty(value = "副总裁" )
|
||||
private String xgjVicePresident;
|
||||
|
||||
@@ -178,5 +185,5 @@ public class BuildInformationResponse {
|
||||
private String settlerBankBackPhotoUrl;
|
||||
|
||||
@ApiModelProperty(value = "点餐小程序店铺名称")
|
||||
private String cShopName;
|
||||
private String miniProgramsShopName;
|
||||
}
|
||||
|
||||
@@ -76,6 +76,8 @@ public class BuildInformationServiceImpl implements BuildInformationService{
|
||||
}
|
||||
OrderSysInfoDO orderSysInfoDO = orderSysInfoDAO.selectByShopId(shopId);
|
||||
if (Objects.nonNull(orderSysInfoDO)){
|
||||
response.setAddresseeName(orderSysInfoDO.getAddresseeName());
|
||||
response.setAddresseeMobile(orderSysInfoDO.getAddresseeMobile());
|
||||
response.setXgjVicePresident(orderSysInfoDO.getXgjVicePresident());
|
||||
response.setXgjRegionId(orderSysInfoDO.getXgjRegionId());
|
||||
response.setAddresseeProvince(orderSysInfoDO.getAddresseeProvince());
|
||||
@@ -120,7 +122,7 @@ public class BuildInformationServiceImpl implements BuildInformationService{
|
||||
response.setAccountOpeningPermit(informationDO.getAccountOpeningPermit());
|
||||
response.setSettlerInHandFrontPicture(informationDO.getSettlerInHandFrontPicture());
|
||||
response.setSettlerInHandBackPicture(informationDO.getSettlerInHandBackPicture());
|
||||
response.setCShopName(informationDO.getCShopName());
|
||||
response.setMiniProgramsShopName(informationDO.getCShopName());
|
||||
response.setSettlerBankBackPhotoUrl(informationDO.getSettlerBankBackPhotoUrl());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user