All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spring.boxes.payment.beans.AlibabaPayProperties Maven / Gradle / Ivy

The newest version!
package com.spring.boxes.payment.beans;

import java.io.Serializable;

import io.swagger.v3.oas.annotations.media.Schema;
import org.springframework.context.annotation.Configuration;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@Configuration
@NoArgsConstructor
@AllArgsConstructor
public class AlibabaPayProperties implements Serializable {

    @Schema(description = "应用编号")
    private String appId;

    @Schema(description = "商户私钥")
    private String privateKey;

    @Schema(description = "支付宝公钥")
    private String aliPayPublicKey;

    @Schema(description = "异步通知url")
    private String notifyUrl;

    @Schema(description = "同步返回的url")
    private String returnUrl;

    @Schema(description = "是否使用沙箱")
    private boolean sandbox;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy