# Conflicts:
#	yudao-server/src/main/resources/application-dev.yaml
#	yudao-server/src/main/resources/application-local.yaml
This commit is contained in:
YunaiV
2025-11-29 09:59:28 +08:00
3 changed files with 1 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ public class SocialClientSaveReqVO {
@JsonIgnore
public boolean isPublicKeyValid() {
// 如果是支付宝,必须填写 publicKey 属性
return !Objects.equals(socialType, SocialTypeEnum.ALIPAY.getType())
return !Objects.equals(socialType, SocialTypeEnum.ALIPAY_MINI_PROGRAM.getType())
|| !StrUtil.isEmpty(publicKey);
}