25 lines
453 B
Java
25 lines
453 B
Java
|
|
package com.cdzy.operations.config;
|
||
|
|
|
||
|
|
import lombok.Getter;
|
||
|
|
import lombok.Setter;
|
||
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author yanglei
|
||
|
|
* @since 2025-10-15 09:36
|
||
|
|
*/
|
||
|
|
|
||
|
|
@Getter
|
||
|
|
@Setter
|
||
|
|
@Configuration
|
||
|
|
@ConfigurationProperties(prefix = "wechat")
|
||
|
|
public class WechatConfig {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 二维码跳转路径
|
||
|
|
*/
|
||
|
|
private String qrUrl;
|
||
|
|
|
||
|
|
}
|