增加字段 同步数据组合

This commit is contained in:
shuo.wang
2025-04-07 19:37:12 +08:00
parent 2a58242706
commit 26d11b7d17
20 changed files with 352 additions and 24 deletions

View File

@@ -136,6 +136,10 @@ public class BuildInformationDO {
@Column(name = "settler_bank_photo_url")
private String settlerBankPhotoUrl;
//门店POS收款银行卡反面
@Column(name = "settler_bank_back_photo_url")
private String settlerBankBackPhotoUrl;
/**
* 结算人银行卡号
*/
@@ -189,5 +193,7 @@ public class BuildInformationDO {
*/
@Column(name = "update_user")
private String updateUser;
//火码,点餐小程序店铺名称',
@Column(name = "c_shop_name")
private String cShopName;
}

View File

@@ -25,9 +25,6 @@ public class AddSignFranchiseRequest {
private String detailAddress;
@ApiModelProperty("店铺编码")
@NotBlank(message = "店铺编码不能为空")
private String shopCode;
@ApiModelProperty("店铺品牌")
@NotBlank(message = "店铺品牌不能为空")

View File

@@ -18,6 +18,11 @@ import java.util.Date;
@Data
public class BuildInformationRequest {
@NotBlank(message = "点餐小程序店铺名称不能为空")
@ApiModelProperty(value = "点餐小程序店铺名称")
private String cShopName;
@NotNull
private Long shopId;
@NotBlank(message = "门店联系人姓名 不能为空")
@@ -108,6 +113,11 @@ public class BuildInformationRequest {
@ApiModelProperty("结算人银行卡照片")
private String settlerBankPhotoUrl;
@NotBlank(message = "结算人银行卡背面照片 不能为空")
@Length(max = 250, message = "结算人银行卡背面照片 长度不能超过250")
@ApiModelProperty("结算人银行卡背面照片")
private String settlerBankBackPhotoUrl;
@NotBlank(message = "结算人银行卡号 不能为空")
@Length(max = 64 , message = "结算人银行卡号 长度不能超过64")
@ApiModelProperty("结算人银行卡号")
@@ -174,12 +184,14 @@ public class BuildInformationRequest {
buildInformationDO.setSettlerInHandBackPicture(this.settlerInHandBackPicture);
buildInformationDO.setSettlerIdCardNo(this.settlerIdCardNo);
buildInformationDO.setSettlerBankPhotoUrl(this.settlerBankPhotoUrl);
buildInformationDO.setSettlerBankBackPhotoUrl(this.settlerBankBackPhotoUrl);
buildInformationDO.setSettlerBankNumber(this.settlerBankNumber);
buildInformationDO.setSettlerBankMobile(this.settlerBankMobile);
buildInformationDO.setSettlerBankName(this.settlerBankName);
buildInformationDO.setAuthorizationUrl(this.authorizationUrl);
buildInformationDO.setRelationshipProve(this.relationshipProve);
buildInformationDO.setAccountOpeningPermit(this.accountOpeningPermit);
buildInformationDO.setCShopName(this.cShopName);
return buildInformationDO;
}

View File

@@ -4,6 +4,7 @@ import com.cool.store.entity.OrderSysInfoDO;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.util.Date;
@@ -12,7 +13,11 @@ public class OrderSysInfoRequest {
@ApiModelProperty(hidden = true)
private Integer type;
@ApiModelProperty(value = "店铺编码",required = true)
@NotBlank(message = "店铺编码不能为空")
private String shopCode;
@ApiModelProperty(value = "店铺ID" ,required = true)
@NotNull(message = "门店id不能为空")
private Long shopId;

View File

@@ -36,7 +36,7 @@ public class ZxjpApiRequest {
private String fxyAccount;
@ApiModelProperty(value = "新掌柜")
private String xjzAccount;
private String xzjAccount;
@ApiModelProperty(value = "云流水账号")
private String ylsAccount;
@@ -66,7 +66,7 @@ public class ZxjpApiRequest {
private String shopSupervisorUserName;
@ApiModelProperty(value = "门店类型1-加盟公司、2-加盟部加盟店、3-自有加盟、4-强加盟、)")
private Integer joinModel;
private Integer joinMode;
@ApiModelProperty(value = "经营模式0 无 1直营 2加盟")
private Integer businessModel;
@@ -114,7 +114,7 @@ public class ZxjpApiRequest {
private String shopLatitude;
@ApiModelProperty(value = "高德、百度定位截图")
private String shopLocationPictures;
private String shopLocationScreenshots;
@ApiModelProperty(value = "门店详细地址")
private String shopAddress;

View File

@@ -173,4 +173,10 @@ public class BuildInformationResponse {
@ApiModelProperty(value = "总部订货收款修改人" )
private String receivingUpdateUser;
@ApiModelProperty("结算人银行卡背面照片")
private String settlerBankBackPhotoUrl;
@ApiModelProperty(value = "点餐小程序店铺名称")
private String cShopName;
}