wlzboy
2025-12-03 c6e38b6c66de5f5a8df5b8b2ab03a82c3b605db8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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";
}