package com.ruoyi.payment.infrastructure.config; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; /** * 二维码配置 * * @author ruoyi */ @Data @Component @ConfigurationProperties(prefix = "payment.qrcode") public class QrCodeConfig { /** 二维码尺寸 */ private Integer size = 300; /** 图片格式 */ private String format = "PNG"; }